Summarize any selected text as a tweet
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Tweet creator",
"short_name": "Tweet creator",
"version": "2.0.1",
"author": "Metaverse Professional",
"description": "Summarize any selected text as a tweet",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://extensionpay.com/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
},
{
"matches": [
"http://*/",
"https://*/"
],
"js": [
"ExtPay.js",
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
}
},
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"storage",
"contextMenus"
]
}