Sweepy Chrome extension: seamless login to carrier portals from our website. Just install and go – no extra steps needed.
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": "Sweepy",
"version": "1.0.2",
"description": "Sweepy Chrome extension: seamless login to carrier portals from our website. Just install and go – no extra steps needed.",
"manifest_version": 3,
"action": {
"default_icon": {
"16": "public/icon-16.png",
"48": "public/icon-64.png",
"128": "public/icon-128.png"
},
"default_title": "Sweepy",
"default_popup": "popup.html"
},
"icons": {
"16": "public/icon-16.png",
"48": "public/icon-64.png",
"128": "public/icon-128.png"
},
"background": {
"service_worker": "background/index.js"
},
"content_scripts": [
{
"matches": [
"https://sweepy-v2.linqservices.com/*",
"https://sweepy.loc:8080/*",
"http://localhost:5173/*"
],
"js": [
"content-scripts/main.js"
]
}
],
"permissions": [
"cookies"
],
"host_permissions": [
"*://*.verizon.com/",
"*://.verizon.com/",
"*://*.vzwcorp.com/",
"*://.vzwcorp.com/",
"*://*.verizonwireless.com/",
"*://.verizonwireless.com/",
"*://*.verizonenterprise.com/",
"*://.verizonenterprise.com/",
"*://*.att.com/",
"*://.att.com/"
]
}