Inspect and view changes in Honeygain click for Honey 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": "Honeygain click for Honey",
"version": "0.1",
"description": "Automatically clicks the honeypot if full",
"permissions": [
"tabs"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://*.honeygain.com/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": {},
"default_title": "Honeygain click for Honey",
"default_popup": "popup.html"
},
"manifest_version": 3
}