Use the right-click menu to tweet selected text
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Tweet from Context Menu",
"description": "Use the right-click menu to tweet selected text",
"version": "0.1",
"permissions": [
"contextMenus",
"scripting"
],
"background": {
"service_worker": "js/service_worker.js"
},
"minimum_chrome_version": "88",
"icons": {
"16": "images/ico16.png",
"32": "images/ico32.png",
"48": "images/ico48.png",
"64": "images/ico64.png",
"128": "images/ico128.png"
},
"action": {
"default_icon": "images/ico32.png"
},
"content_security_policy": {},
"host_permissions": [
"http://*/",
"https://*/"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}