share-to-mastodon/manifest.json

41 lines
915 B
JSON
Raw Normal View History

2022-12-18 19:47:46 +01:00
{
"manifest_version": 3,
"name": "Share to Mastodon",
2023-02-18 00:36:42 +01:00
"version": "2.0",
2022-12-18 19:47:46 +01:00
"author": "Corbin Davenport",
"homepage_url": "https://github.com/corbindavenport/share-to-mastodon",
"description": "Share links to Mastodon in one click!",
"options_ui": {
2022-12-18 22:51:11 +01:00
"page": "settings.html",
2022-12-18 19:47:46 +01:00
"open_in_tab": false
},
2022-12-18 22:51:11 +01:00
"action": {
"default_icon": {
"32": "img/icon_x32.png",
2023-02-18 00:26:01 +01:00
"48": "img/icon_action_x48.png",
"128": "img/icon_action_x128.png"
2022-12-18 22:51:11 +01:00
},
"default_title": "Share this page to Mastodon"
2022-12-18 19:47:46 +01:00
},
2022-12-18 23:22:16 +01:00
"commands": {
"_execute_action": {
"suggested_key": "Ctrl+Shift+S",
"description": "Share current page on Mastodon"
}
},
2022-12-18 19:47:46 +01:00
"permissions": [
"contextMenus",
"storage",
2022-12-18 22:51:11 +01:00
"notifications",
"activeTab"
2022-12-18 19:47:46 +01:00
],
"minimum_chrome_version": "93",
"background": {
"service_worker": "js/background.js"
},
"icons": {
2023-02-18 00:26:01 +01:00
"32": "img/icon_x32.png",
2022-12-18 19:47:46 +01:00
"48": "img/icon_x48.png",
2023-02-18 00:26:01 +01:00
"128": "img/icon_x128.png"
2022-12-18 19:47:46 +01:00
}
}