Inspect and view changes in Tweet Current Page source codes across current and past versions
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 Current Page",
"description": "現在表示しているサイトをツイートできるシンプルな Chrome 拡張機能。",
"version": "0.2.3",
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"action": {},
"background": {
"service_worker": "background.js"
},
"content_scripts": [],
"permissions": [
"tabs"
],
"commands": {
"tweet": {
"description": "Tweet current page from shortcut.",
"global": false,
"suggested_key": {
"default": "Ctrl+Shift+Y",
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"linux": "Ctrl+Shift+Y",
"chromeos": "Ctrl+Shift+Y"
}
}
}
}