Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Trade Token Sync",
"version": "1.1.1",
"description": "Syncs your Steam access token with participating sites",
"icons": {
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"permissions": [
"cookies",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>",
"https:\/\/*.steamcommunity.com\/*"
],
"action": {
"default_icon": {
"16": "images\/icon-16.png",
"24": "images\/icon-24.png",
"32": "images\/icon-32.png"
},
"default_popup": "popup\/popup.html"
},
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/steamcommunity.com\/tradeoffer\/*"
],
"exclude_matches": [
"https:\/\/steamcommunity.com\/tradeoffer\/*\/confirm*"
],
"js": [
"content-scripts\/tradeoffer_injector.js"
]
},
{
"run_at": "document_end",
"matches": [
"<all_urls>"
],
"js": [
"content-scripts\/universal_injector.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/steamcommunity.com\/*"
],
"resources": [
"content-scripts\/tradeoffer.js"
]
},
{
"matches": [
"<all_urls>"
],
"resources": [
"content-scripts\/universal.js"
]
}
]
}