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:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user