This extension clicks the Next In Queue button for the Steam Winter 2015 Sale.
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": 2,
"name": "Steam Winter Sale 2015 Next In Queue Clicker",
"description": "This extension clicks the Next In Queue button for the Steam Winter 2015 Sale.",
"version": "1.5",
"browser_action": {
"default_title": "Steam Auto-Clicker"
},
"background": {
"scripts": [
"/lib/jquery-1.11.3.min.js",
"/lib/underscore-min.js",
"background.js"
]
},
"icons": {
"16": "images/enabledIcon16.png",
"48": "images/enabledIcon48.png",
"128": "images/enabledIcon128.png"
},
"content_scripts": [
{
"matches": [
"*://*.store.steampowered.com/*"
],
"js": [
"/lib/jquery-1.11.3.min.js",
"/lib/underscore-min.js",
"clickNextInQueue.js"
]
}
],
"permissions": [
"<all_urls>",
"tabs",
"storage"
]
}