-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
39 lines (39 loc) · 1.01 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
{
"name": "Snowflake",
"version": "1.1.0",
"manifest_version": 2,
"description": "Chrome extension for generating unique CSS selectors",
"homepage_url": "https://github.com/desmondw/snowflake",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"browser_action": {
"default_icon": "icons/icon128.png"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/jquery-2.1.1.min.js",
"js/inject.js"],
"css": ["css/style.css"],
"run_at": "document_end"
}],
"background": {
"page": "src/background.html"
},
"permissions": ["clipboardWrite",
"activeTab",
"background"],
"web_accessible_resources": ["fonts/Ubuntu/Ubuntu-Regular.ttf"],
"commands": {
"toggle-selection": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Toggle selection"
}
}
}