migrate to typescript, with fixes
This commit is contained in:
34
template/manifest.json
Executable file
34
template/manifest.json
Executable file
@ -0,0 +1,34 @@
|
||||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Data Extracter",
|
||||
"version": "0.5.1",
|
||||
"author": "jebbs",
|
||||
"description": "Extract data from web page elements as sheet.",
|
||||
"icons": {
|
||||
"16": "icon.png",
|
||||
"48": "icon.png",
|
||||
"128": "icon.png"
|
||||
},
|
||||
"browser_action": {
|
||||
"default_icon": "icon.png",
|
||||
"default_popup": "html/popup.html",
|
||||
"default_title": "Data Extracter"
|
||||
},
|
||||
"background": {
|
||||
"scripts": [
|
||||
"scripts/background.bundle.js"
|
||||
],
|
||||
"persistent": false
|
||||
},
|
||||
"content_scripts": [{
|
||||
"matches": ["*://*/*"],
|
||||
"js": [
|
||||
"scripts/content.bundle.js"
|
||||
],
|
||||
"run_at": "document_idle"
|
||||
}],
|
||||
"permissions": [
|
||||
"activeTab",
|
||||
"notifications"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user