-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.04 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
{
"manifest_version": 3,
"name": "Share to Mastodon",
"version": "2.2",
"author": "Corbin Davenport",
"homepage_url": "https://github.com/corbindavenport/share-to-mastodon",
"description": "Share links to Mastodon in one click",
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"action": {
"default_icon": {
"32": "img/icon_x32.png",
"48": "img/icon_action_x48.png",
"128": "img/icon_action_x128.png"
},
"default_title": "Share this page to Mastodon"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Share current page on Mastodon"
}
},
"permissions": [
"contextMenus",
"storage",
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{4f049aab-274c-4a9b-8813-84b40b7d5ec4}",
"strict_min_version": "106.0"
}
},
"background": {
"scripts": [
"js/background.js"
],
"service_worker": "js/background.js"
},
"icons": {
"32": "img/icon_x32.png",
"48": "img/icon_x48.png",
"128": "img/icon_x128.png"
}
}