Inspect and view changes in CTS CSFloat Sticker Parser source codes across current and past versions
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",
"manifest_version": 3,
"name": "CTS CSFloat Sticker Parser",
"version": "1.0",
"permissions": [
"storage",
"alarms",
"tabs",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "images/16.png",
"128": "images/128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "images/16.png",
"128": "images/128.png"
},
"default_title": "Click to open CSFloat parser"
},
"content_scripts": [
{
"matches": [
"https://csfloat.com/*"
],
"js": [
"contentCsfloat.js"
]
},
{
"matches": [
"https://csfloatparser.com/*",
"*://localhost/*",
"https://float.csfloatparser.com/*",
"https://sticker.csfloatparser.com/*"
],
"js": [
"contentParser.js"
]
}
]
}