This commit is contained in:
2018-05-23 09:51:18 +08:00
commit c81b2d1989
14 changed files with 409 additions and 0 deletions

38
manifest.json Executable file
View 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"
]
}