1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-04-22 07:58:01 +03:00
Files
TabsAsideExtension/manifest.json
T
2020-03-25 22:05:40 +03:00

43 lines
822 B
JSON

{
"name": "Tabs Aside",
"version": "0.1",
"manifest_version": 2,
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browers",
"author": "Michael \"XFox\" Gordeev",
"permissions":
[
"tabs",
"unlimitedStorage",
"<all_urls>",
"bookmarks"
],
"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": [ "*" ],
"content_scripts":
[
{
"matches": [ "<all_urls>" ],
"css":
[
"css/style.css",
"css/style.generic.css",
"css/style.dark.css"
],
"run_at": "document_idle"
}
],
"background":
{
"scripts": [ "js/background.js" ],
"persistent": true
}
}