-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
executable file
·58 lines (53 loc) · 1.41 KB
/
manifest.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* File: manifest.json
* -------------------
* A manifest file (like this one) is used to
* give Chrome information about your extension.
*
* You shouldn't need to change anything in this file
* unless you're doing extensions.
*
* For more details, check out the documentation:
* https://developer.chrome.com/extensions/manifest
*/
{
// Required
"manifest_version": 2,
"name": "Biroliro",
"version": "0.0.2",
// Recommended
"description": "Dando nome aos bois",
"icons": {
"16": "icons/Biro-white-16.png",
"32": "icons/Biro-white-32.png",
"48": "icons/Biro-white-48.png",
"64": "icons/Biro-white-64.png",
"96": "icons/Biro-white-96.png",
"128": "icons/Biro-white-128.png"
},
// Optional
"homepage_url": "https://www.brasil.gov.br/",
// Put any additional permissions your applications needs here.
// For a list of possibilities, see
// https://developer.chrome.com/extensions/declare_permissions
"permissions": [
"storage" // Allows access to chrome.storage API
],
// Probably will not need to be modified unless you *really*
// know what you're doing
"browser_action": {
"default_icon": "icons/Biro-white-19.png",
"default_title": "Nome aos bois",
"default_popup": "src/popup.html"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"/src/content.js"
],
"run_at": "document_end"
}
]
}