SuperStack ReachOut Helper
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": "superstack-reachout-extension",
"description": "SuperStack ReachOut Helper",
"version": "0.1.0",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*://twitter.com/*"
],
"js": [
"twitterInjection.js"
]
},
{
"matches": [
"*://www.linkedin.com/*",
"*://linkedin.com/*"
],
"js": [
"linkedinInjection.js"
]
}
],
"icons": {
"16": "/icons/16x.png",
"32": "/icons/32x.png",
"48": "/icons/48x.png",
"128": "/icons/128x.png"
}
}