mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 13:53:23 +00:00
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Kutt",
|
|
"version": "0.0.0",
|
|
"short_name": "Kutt",
|
|
"description": "Shorten long URLs with just one click.",
|
|
"icons": {
|
|
"16": "assets/icons/favicon-16.png",
|
|
"32": "assets/icons/favicon-32.png",
|
|
"48": "assets/icons/favicon-48.png",
|
|
"128": "assets/icons/favicon-128.png"
|
|
},
|
|
"homepage_url": "https://github.com/thedevs-network/kutt-extension.git",
|
|
"__firefox__browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "support@kutt.it",
|
|
"strict_min_version": "109.0"
|
|
}
|
|
},
|
|
"__chrome|firefox__author": "abhijithvijayan",
|
|
"action": {
|
|
"default_popup": "Popup/popup.html",
|
|
"default_icon": {
|
|
"16": "assets/icons/favicon-16.png",
|
|
"32": "assets/icons/favicon-32.png",
|
|
"48": "assets/icons/favicon-48.png",
|
|
"128": "assets/icons/favicon-128.png"
|
|
},
|
|
"default_title": "Shorten this URL"
|
|
},
|
|
"background": {
|
|
"__chrome__service_worker": "assets/js/background.bundle.js",
|
|
"__chrome__type": "module",
|
|
"__firefox__scripts": ["assets/js/background.bundle.js"],
|
|
"__firefox__type": "module"
|
|
},
|
|
"__chrome__minimum_chrome_version": "88",
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage"
|
|
],
|
|
"host_permissions": [
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self';"
|
|
},
|
|
"__chrome__options_page": "Options/options.html",
|
|
"options_ui": {
|
|
"page": "Options/options.html",
|
|
"open_in_tab": true
|
|
}
|
|
}
|