a11y-outline

web extension to navigate document outlines easily
git clone https://git.ce9e.org/a11y-outline.git

commit
db18499697ec7b55a768cc83f0e064ada3bbf7e1
parent
5777431525edbcb552f8ee7256c9c63db566efbe
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-11-25 22:41
Cleanup manifest.json

Diffstat

M manifest.json 45 ++++++++++++++++++++-------------------------

1 files changed, 20 insertions, 25 deletions


diff --git a/manifest.json b/manifest.json

@@ -1,18 +1,32 @@
    1     1 {
    2     2   "manifest_version": 2,
    3    -1 
    4     3   "name": "a11y-outline",
   -1     4   "author": "Tobias Bengfort",
   -1     5   "homepage_url": "https://github.com/xi/a11y-outline",
    5     6   "description": "navigate page outlines easily",
    6     7   "version": "1.5.0",
   -1     8   "browser_action": {
   -1     9     "default_title": "A11y Outline",
   -1    10     "default_icon": "icon-128.png"
   -1    11   },
    7    12   "icons": {
    8    13     "128": "icon-128.png"
    9    14   },
   10    -1 
   11    -1   "browser_action": {
   12    -1     "default_icon": "icon-128.png",
   13    -1     "default_title": "A11y Outline"
   -1    15   "background": {
   -1    16     "scripts": ["bg.js"],
   -1    17     "persistent": false
   14    18   },
   15    -1 
   -1    19   "content_scripts": [{
   -1    20     "matches": ["<all_urls>"],
   -1    21     "js": [
   -1    22       "vendor/aria.js",
   -1    23       "treeview.js",
   -1    24       "outline.js"
   -1    25     ]
   -1    26   }],
   -1    27   "web_accessible_resources": [
   -1    28     "outline.css"
   -1    29   ],
   16    30   "commands": {
   17    31     "_execute_browser_action": {
   18    32       "suggested_key": {
@@ -35,26 +49,7 @@
   35    49       "description": "go to previous heading"
   36    50     }
   37    51   },
   38    -1 
   39    -1   "background": {
   40    -1     "scripts": ["bg.js"],
   41    -1     "persistent": false
   42    -1   },
   43    -1 
   44    -1   "content_scripts": [{
   45    -1     "matches": ["<all_urls>"],
   46    -1     "js": [
   47    -1       "vendor/aria.js",
   48    -1       "treeview.js",
   49    -1       "outline.js"
   50    -1     ]
   51    -1   }],
   52    -1 
   53    52   "permissions": [
   54    53     "<all_urls>"
   55    -1   ],
   56    -1 
   57    -1   "web_accessible_resources": [
   58    -1     "outline.css"
   59    54   ]
   60    55 }