Auto-collection of free Satoshi without captcha on the site freebitcoin
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",
"content_security_policy": "default-src 'self'; style-src *; img-src *; object-src 'self'",
"manifest_version": 2,
"name": "Russian bot DEMO",
"version": "3.0",
"description": "Auto-collection of free Satoshi without captcha on the site freebitcoin",
"short_name": "Bitcoin bot",
"icons": {
"64": "icons/bitcoin-logo.png"
},
"browser_action": {
"default_icon": "icons/bitcoin-logo.png",
"default_title": "Russian bot DEMO",
"default_popup": "popup/popup.html",
"browser_style": true
},
"background": {
"scripts": [
"backgroundscript.js"
]
},
"content_scripts": [
{
"matches": [
"*://freebitco.in/*"
],
"js": [
"contentscript.js"
]
}
],
"permissions": [
"tabs",
"storage",
"sessions",
"*://freebitco.in/*"
]
}