Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "X Reply Counter",
"version": "2.1.4",
"description": "Count your daily X replies across one or multiple accounts automatically with ease on x.com and tweetdeck.",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"permissions": [
"webRequest",
"storage"
],
"host_permissions": [
"*:\/\/*.x.com\/*",
"*:\/\/*.twitter.com\/*",
"https:\/\/xreplycounter.com\/*",
"http:\/\/localhost:5173\/*"
],
"background": {
"service_worker": "background.js"
},
"externally_connectable": {
"matches": [
"*:\/\/*.x.com\/*",
"*:\/\/*.twitter.com\/*"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.x.com\/*",
"*:\/\/*.twitter.com\/*",
"*:\/\/pro.twitter.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/xreplycounter.com\/*",
"http:\/\/localhost:5173\/*"
],
"run_at": "document_start",
"js": [
"site.js"
]
}
]
}