-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.33 KB
/
manifest.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
{
"host_permissions": [
"https://img.shields.io/"
],
"permissions": [
"storage"
],
"manifest_version": 3,
"content_scripts": [{
"exclude_globs": [],
"include_globs": ["*"],
"js": ["starify-links.user.js"],
"matches": ["http://*/*", "file:///*", "https://*/*"],
"run_at": "document_end"
}],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "favicon.png",
"default_title": "Starify Links"
},
"commands": {
"activate-github-stars": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "Add star badges to links"
},
"reload": {
"suggested_key": {
"default": "Ctrl+M",
"mac": "Command+M"
},
"description": "Reload my extension from disk"
}
},
"converted_from_user_script": true,
"description": "Add star badges to links to GitHub, GitLab, Chrome Web Store, Reddit, and more",
"name": "Starify Links",
"short_name": "StarifyLinks",
"version": "2.2",
"icons": {
"128": "favicon.png"
},
"options_page": "options.html"
}