Encrypts Steam-Tradelink for Sparkles viewers
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "YT-Encrypt",
"version": "1.5.0f",
"author": "ReShade",
"description": "Encrypts Steam-Tradelink for Sparkles viewers",
"icons": {
"16": "icons/yt-encrypt-16.png",
"48": "icons/yt-encrypt-48.png",
"96": "icons/yt-encrypt-96.png",
"128": "icons/yt-encrypt-128.png"
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*"
],
"js": [
"src/content.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [
"src/background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}