pinmenote-extension/manifest/manifest.dev.json

59 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2023-09-22 03:18:30 +02:00
{
"manifest_version": 3,
"name": "pinmenote-dev",
"short_name": "pinmenote-dev",
2023-11-19 10:38:21 +01:00
"description": "Pin note, modify, draw, comment, archive and save website",
"version": "0.1.7",
2023-09-22 03:18:30 +02:00
"icons": {
"16": "assets/icon/16.png",
"32": "assets/icon/32.png",
"64": "assets/icon/64.png",
"128": "assets/icon/128.png"
},
"author": "pinmenote (contact@pintmenote.com)",
"action": {
"default_icon": {
"16": "assets/icon/16.png",
"24": "assets/icon/24.png",
"32": "assets/icon/32.png"
},
2023-10-28 00:00:46 +02:00
"default_title": "pinmenote-dev",
2023-09-22 03:18:30 +02:00
"default_popup": "default-popup/default-popup.html"
},
2023-11-19 10:38:21 +01:00
"permissions": [
"activeTab",
"storage",
"unlimitedStorage",
"scripting",
"downloads"
],
2023-09-22 03:18:30 +02:00
"background": {
"service_worker": "service-worker/service-worker.ts",
"type": "module"
},
2023-11-19 10:38:21 +01:00
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": false,
"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"
}
],
2023-09-22 03:18:30 +02:00
"options_ui": {
"page": "options-ui/options-ui.html"
}
}