38 lines
		
	
	
		
			824 B
		
	
	
	
		
			JSON
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			824 B
		
	
	
	
		
			JSON
		
	
	
		
			Executable File
		
	
	
	
	
| {
 | |
|   "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"
 | |
|   ]
 | |
| } |