68 lines
1.4 KiB
JSON
68 lines
1.4 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "contact@pinmenote.com"
|
|
}
|
|
},
|
|
"name": "pinmenote",
|
|
"short_name": "pinmenote",
|
|
"description": "Pin note, modify, draw, comment, archive and save website",
|
|
"homepage_url": "https://pinmenote.com",
|
|
"version": "0.1.7",
|
|
"icons": {
|
|
"16": "assets/icon/16.png",
|
|
"48": "assets/icon/48.png",
|
|
"128": "assets/icon/128.png"
|
|
},
|
|
"author": "pinmenote (contact@pintmenote.com)",
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "assets/icon/16.png",
|
|
"24": "assets/icon/24.png",
|
|
"32": "assets/icon/32.png"
|
|
},
|
|
"default_title": "pinmenote",
|
|
"default_popup": "default-popup/default-popup.html"
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"unlimitedStorage",
|
|
"scripting",
|
|
"downloads",
|
|
"http://*/*",
|
|
"https://*/*",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"persistent": true,
|
|
"scripts": [
|
|
"service-worker/service-worker.ts"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"content-script/content-script.ts"
|
|
],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"all_frames": true,
|
|
"js": [
|
|
"iframe/iframe-script.ts"
|
|
],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"options_ui": {
|
|
"page": "options-ui/options-ui.html"
|
|
}
|
|
} |