Files
simple-sync/manifest.json
2025-09-23 00:29:33 +02:00

41 lines
718 B
JSON

{
"manifest_version": 3,
"name": "Simple Sync",
"description": "A simple extension",
"version": "1.0.0",
"icons": {
"16": "icons/icon.jpg",
"48": "icons/icon.jpg",
"128": "icons/icon.jpg"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon.jpg",
"48": "icons/icon.jpg"
}
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"scripting",
"activeTab",
"bookmarks"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}