Inspect and view changes in Better Share Button 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
{
"manifest_version": 2,
"name": "Better Share Button",
"homepage_url": "https://github.com/joepietrzyk/better-share-button",
"content_scripts": [
{
"matches": [
"*://*.reddit.com/*"
],
"js": [
"reddit.bundle.js"
]
},
{
"matches": [
"*://*.x.com/*",
"*://*.twitter.com/*"
],
"js": [
"x.bundle.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_action": {
"default_icon": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"default_popup": "options.html"
},
"content_security_policy": "script-src 'self'; object-src 'self';",
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "joepietrzyk.better-share-button@github.com"
}
},
"version": "1.0.0",
"description": "Adds a new share button to Reddit and X that copies a Discord embeddable link."
}