chromeextension/manifest.json

30 lines
649 B
JSON
Raw Permalink Normal View History

2024-05-13 22:51:32 +02:00
{
"manifest_version": 3,
"name": "favoris backup",
"description": "Link to G Suite Certification website",
"version": "1.2",
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": {
"128": "icon.png"
},
"default_title": "Click Me",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://httptest.raphaelpiccolo.com/*"
],
"permissions": [
"unlimitedStorage",
"notifications",
"bookmarks",
"tabs",
"nativeMessaging"
]
}