Steam Cleaner

The first extension that I made.

Steam Cleanerคืออะไร?

Steam Cleaner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adam Shaw และคุณลักษณะหลักของมันคือ "The first extension that I made."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Cleaner

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

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

                        Cleans up Steam Greenlight pages (removing extra banners) and adds "Vote Down and Next item" button.

More features to come in the future.                    

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

ชื่อ Steam Cleaner Steam Cleaner
ID blocallakhfbheckclfcjhechmkpeibe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe
คำอธิบาย The first extension that I made.
ขนาดไฟล์ 16.21 KB
จำนวนการติดตั้ง 394
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2012-11-15
วันที่เผยแพร่ 2012-11-14
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Adam Shaw
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Cleaner",
    "version": "1.0",
    "manifest_version": 2,
    "description": "The first extension that I made.",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.steamcommunity.com\/*",
                "http:\/\/steamcommunity.com\/*",
                "http:\/\/*.steampowered.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}