Initial commit
This commit is contained in:
41
manifest.json
Normal file
41
manifest.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user