mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
2eae09583c
- Updated repository documentation: added contribution guidelines, Code of Conduct, GitHub templates - Updated README - Added confirmation dialog for tabs and collections deletion (#17) - Complete code refactoring (HTML/JS/CSS) - Implemented <iframe> base for embedded pane (#13) (Fixed CSS instability on some websites) - Improved dark theme - Added opensource fonts to replace Segoe UI on Unix systems (#11, #17) - Fixed invisible vertical scrollbar - Code polish and improvement Co-authored-by: Amine A. <15179425+AmineI@users.noreply.github.com> Co-Authored-By: Michael Gordeev <michael@xfox111.net>
30 lines
630 B
JSON
30 lines
630 B
JSON
{
|
|
"name": "Tabs Aside",
|
|
"version": "1.5",
|
|
"manifest_version": 2,
|
|
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browsers",
|
|
"author": "Michael \"XFox\" Gordeev",
|
|
"permissions":
|
|
[
|
|
"tabs",
|
|
"unlimitedStorage",
|
|
"storage",
|
|
"<all_urls>"
|
|
],
|
|
|
|
"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": false
|
|
}
|
|
} |