Steam Winter Sale 2015 Next In Queue Clicker

This extension clicks the Next In Queue button for the Steam Winter 2015 Sale.

Steam Winter Sale 2015 Next In Queue Clickerคืออะไร?

Steam Winter Sale 2015 Next In Queue Clicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HHHApps และคุณลักษณะหลักของมันคือ "This extension clicks the Next In Queue button for the Steam Winter 2015 Sale."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Winter Sale 2015 Next In Queue Clicker

ดาวน์โหลดไฟล์ส่วนขยาย Steam Winter Sale 2015 Next In Queue Clicker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will help you quickly accrue your 2015 Steam Winter Sale trading cards by auto-clicking the Next In Queue button for you during the 2015 Steam Winter Sale. Start up a discovery queue and watch it go. I will look into updating this with some newer stuff to make it easier to automate if people like this.

UPDATE: I made it so it works without you even having to click the button to start a new queue. This will actually loop until you navigate away from the "http://store.steampowered.com/" domain. SET IT AND FORGET IT!

Check out the code at https://github.com/HHHApps/SteamWinterSale2015

UPDATE (JUN 27, 2016)
The auto-clicker SHOULD automatically stop once Steam's HTML updates to show that you've reached the end of your collection for the day.

UPDATE (JUN 28, 2016)
The auto-clicker can now be enabled and disabled by clicking the icon. It is color coded to be green when enabled (it will auto-click) and red when disabled (it will not auto-click). When enabled, it SHOULD now also start when you have cards to collect and stop when you do not. But you can start and stop the extension whenever you want.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Steam Winter Sale 2015 Next In Queue Clicker Steam Winter Sale 2015 Next In Queue Clicker
ID glklhfbneoafcidllhfboofmllchoclf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/steam-winter-sale-2015-ne/glklhfbneoafcidllhfboofmllchoclf
คำอธิบาย This extension clicks the Next In Queue button for the Steam Winter 2015 Sale.
ขนาดไฟล์ 59.62 KB
จำนวนการติดตั้ง 347
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2016-06-27
วันที่เผยแพร่ 2016-06-27
คะแนน 3.70/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา HHHApps
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
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": [
        "",
        "tabs",
        "storage"
    ]
}