Inspect and view changes in Strikethrough, Etc. 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": 2,
"name": "Strikethrough, Etc.",
"description": "Use s̶t̶r̶i̶k̶e̶t̶h̶r̶o̶u̶g̶h̶ text (and many other text styles) anywhere. Works with Facebook, Twitter, Gmail, and more.",
"version": "1.0.3",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"permissions": [
"storage",
"contextMenus",
"<all_urls>"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"transforms.js",
"run_transform.js",
"menu_structure.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
}