mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
2844eb50da
Updated manifest permissions
29 lines
615 B
JSON
29 lines
615 B
JSON
{
|
|
"name": "Tabs Aside",
|
|
"version": "1.0",
|
|
"manifest_version": 2,
|
|
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browsers",
|
|
"author": "Michael \"XFox\" Gordeev",
|
|
"permissions":
|
|
[
|
|
"tabs",
|
|
"unlimitedStorage",
|
|
"activeTab"
|
|
],
|
|
|
|
"icons":
|
|
{
|
|
"128": "icons/light/empty/128.png",
|
|
"48": "icons/light/empty/48.png",
|
|
"32": "icons/light/empty/32.png",
|
|
"16": "icons/light/empty/16.png"
|
|
},
|
|
"browser_action": { "default_icon": "icons/light/empty/32.png" },
|
|
"web_accessible_resources": [ "*" ],
|
|
|
|
"background":
|
|
{
|
|
"scripts": [ "js/background.js" ],
|
|
"persistent": true
|
|
}
|
|
} |