Adds content creator discounts, packs and registration bonuses directly in the Gaijin store.
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": 3,
"name": "War Thunder Store+",
"version": "1.7.4",
"description": "Adds content creator discounts, packs and registration bonuses directly in the Gaijin store.",
"permissions": [
"https://store.gaijin.net/",
"https://store.gaijin.net/catalog.php*",
"https://store.gaijin.net/story.php*",
"https://warthunder.com/en/play4free?r=*",
"https://store.gaijin.net/activate.php",
"https://store.gaijin.net/user.php?view=purchases",
"https://store.gaijin.net/user.php?project=wt&view=purchases",
"https://store.gaijin.net/user.php?project=xo&view=purchases",
"https://store.gaijin.net/user.php?project=el&view=purchases",
"tabs",
"storage"
],
"action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_title": "War Thunder Store+",
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://store.gaijin.net/*"
],
"js": [
"creator_buttons.js",
"creator_store.js",
"enter_code.js",
"next_sale.js",
"purchase_history.js",
"statistics.js",
"changelog.js",
"before_you_buy.js",
"market_history.js",
"market_history_totals.js"
],
"css": [
"styles.css"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "f051c3e45a0d3fb02b5d967e1c4f8cc15d3a9314@addon"
},
"gecko_android": {
"id": "f051c3e45a0d3fb02b5d967e1c4f8cc15d3a9314@addon"
}
}
}