summaryrefslogtreecommitdiff
path: root/data/extensions/SubmitMe@0xbeef.coffee/manifest.json
blob: 6a75fe77d3b91497919580db2c95a5c31bfc137a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
  "manifest_version": 2,
  "name": "Reveal hidden HTML elements",
  "version": "1.8",
  "author": "Nathan Nichols",
  "description": "Allows you to force all hidden text on a page to show, and alerts you if it detects a significant amount of hidden text on a page.",
  "applications": {
    "gecko": {
	  "id": "SubmitMe@0xbeef.coffee",
	  "strict_min_version": "42.0"
    }
  },
	"icons":{
		"16": "icons/16x16.png",
		"48": "icons/48x48.png"
	},
  "permissions": [
	"contextMenus",
	"webRequest",
	"activeTab",
	"notifications",
	"<all_urls>"
	],
  "content_scripts": [
	{
    "matches": ["<all_urls>"],
    "js": ["improve_css.js"]
	}],
	"page_action": {
		"browser_style": true,
		"default_icon": {
			"16": "icons/16x16.png",
			"48": "icons/48x48.png"
		},
		"default_title": "Submit Me",
		"default_popup": "popup/popup.html"
	},


  "background": {
    "scripts": ["background.js"]
  }
  
}