1{
2    "manifest_version": 2,
3    "name": "DokuWiki Toolbox",
4    "short_name": "DW Toolbox",
5    "version": "2010.08.08",
6    "description": "Load the DokuWiki Toolbox plugin on any DokuWiki installation on the web",
7    "author": "Andreas Gohr",
8    "homepage_url": "https:\/\/www.dokuwiki.org\/plugin:toolbox",
9    "content_scripts": [
10        {
11            "matches": [
12                "https:\/\/*\/*?do=edit",
13                "http:\/\/*\/*?do=edit"
14            ],
15            "js": [
16                "content.js"
17            ]
18        }
19    ],
20    "web_accessible_resources": [
21        "script.js"
22    ],
23    "icons": {
24        "16": "icon-16.png",
25        "48": "icon-48.png",
26        "128": "icon-128.png"
27    }
28}