Inspect and view changes in StrikeThrough for Gmail 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",
"name": "StrikeThrough for Gmail",
"description": "This light-weight extension adds a strike-through button to Gmail compose window - with keyboard shortcut Ctrl+Shift+S.",
"version": "1.0.2.6",
"permissions": [
"https://mail.google.com/",
"https://inbox.google.com/",
"https://gsmart.in/"
],
"content_scripts": [
{
"matches": [
"https://mail.google.com/*",
"https://inbox.google.com/*"
],
"js": [
"inboxsdk.js",
"strike-through.js"
]
}
],
"icons": {
"19": "app19.png",
"48": "app48.png",
"128": "app128.png"
},
"browser_action": {
"default_icon": {
"19": "app19.png",
"48": "app48.png"
},
"default_title": "Gmail StrikeThrough",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"strike-through.png"
],
"manifest_version": 2
}