Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Crypto Wallet Scraper",
"version": "1.0",
"description": "Extracts BTC cryptocurrency wallet addresses from web pages",
"permissions": [
"alarms",
"scripting",
"storage",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"ExtPay.js",
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Crypto Wallet Scraper",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"author": {
"name": "Martin Holy",
"homepage": "https:\/\/x.com\/ylohnitram"
},
"web_accessible_resources": [
{
"resources": [
"addresses.html",
"addresses.js",
"ExtPay.js"
],
"matches": [
"<all_urls>"
]
}
]
}