mirror of
https://github.com/Jonnyan404/memos-bber.git
synced 2026-04-24 19:48:37 +09:00
4bdd3fb364
Update version strings in extension manifests to reflect the new release date. chrome/manifest.json and edge/manifest.json: 2026.04.23 -> 2026.04.24; firefox/manifest.json: 2026.4.23 -> 2026.4.24. No other functional changes.
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "__MSG_extName__",
|
|
"default_locale": "en",
|
|
"version": "2026.4.24",
|
|
"browser_action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": "assets/logo_24x24.png",
|
|
"default_title": "__MSG_actionTitle__"
|
|
},
|
|
"description": "__MSG_extDescription__",
|
|
"homepage_url": "https://github.com/Jonnyan404/memos-bber",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "memos-bber@jonnyan404.github.io",
|
|
"data_collection_permissions": {
|
|
"required": ["none"]
|
|
}
|
|
}
|
|
},
|
|
"icons": {
|
|
"128": "assets/logo-128.png",
|
|
"16": "assets/logo-16.png",
|
|
"48": "assets/logo-48.png"
|
|
},
|
|
"background": {
|
|
"scripts": ["js/background.js"]
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"storage",
|
|
"activeTab",
|
|
"contextMenus",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"commands": {
|
|
"open-extension": {
|
|
"description": "Open my extension",
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+F",
|
|
"mac": "MacCtrl+Shift+F"
|
|
}
|
|
}
|
|
}
|
|
}
|