1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-04-22 07:58:01 +03:00

Done extension UI and basic interactions

This commit is contained in:
Michael Gordeev
2020-03-10 19:41:05 +03:00
commit 1480e88081
30 changed files with 559 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"name": "Tabs Aside",
"version": "0.1",
"manifest_version": 2,
"description": "Classic Microsoft Edge \"Tabs Aside\" feature",
"author": "Michael \"XFox\" Gordeev",
"permissions": [ "tabs" ],
"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"
},
"web_accessible_resources": [ "*" ],
"browser_action":
{
"default_popup": "popup/popup.html"
},
"content_scripts":
[
{
"matches": [ "<all_urls>" ],
"js": [ "js/aside-script.js" ],
"css":
[
"css/style.css",
"css/style.generic.css"
]
}
],
"background":
{
"scripts": ["js/background.js"],
"persistent": true
}
}