PumpList
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": "PumpList",
"description": "PumpList",
"version": "1.1",
"manifest_version": 3,
"action": {
"default_icon": "logo128.png"
},
"content_scripts": [
{
"matches": [
"https://x.com/*",
"https://api.x.com/*"
],
"css": [
"content-cli/css/app.css"
],
"js": [
"content-cli/js/app.js"
],
"run_at": "document_idle"
}
],
"options_page": "config/index.html",
"background": {
"service_worker": "service_worker.js"
},
"permissions": [
"storage",
"notifications"
]
}