init
This commit is contained in:
		
							
								
								
									
										38
									
								
								manifest.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										38
									
								
								manifest.json
									
									
									
									
									
										Executable file
									
								
							| @ -0,0 +1,38 @@ | ||||
| { | ||||
|   "manifest_version": 2, | ||||
|   "name": "Data Extracter", | ||||
|   "version": "0.0.1", | ||||
|   "author": "jebbs", | ||||
|   "description": "Extract data as sheet from web page elements。", | ||||
|   "icons": { | ||||
|     "16": "icon.png", | ||||
|     "48": "icon.png", | ||||
|     "128": "icon.png" | ||||
|   }, | ||||
|   "browser_action": { | ||||
|     "default_icon": "icon.png", | ||||
|     "default_popup": "popup/tip.html", | ||||
|     "default_title": "Data Extracter" | ||||
|   }, | ||||
|   "background": { | ||||
|     "scripts": [ | ||||
|       "scripts/tools.js", | ||||
|       "scripts/extract.js", | ||||
|       "scripts/background.js" | ||||
|     ], | ||||
|     "persistent": false | ||||
|   }, | ||||
|   "content_scripts": [{ | ||||
|     "matches": ["*://*/*"], | ||||
|     "js": [ | ||||
|       "scripts/jquery.min.js", | ||||
|       "scripts/tools.js", | ||||
|       "scripts/content.js" | ||||
|     ], | ||||
|     "run_at": "document_idle" | ||||
|   }], | ||||
|   "permissions": [ | ||||
|     "activeTab", | ||||
|     "storage" | ||||
|   ] | ||||
| } | ||||
		Reference in New Issue
	
	Block a user