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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
        }
    ]
}