Activate on Steam

Adds a context menu to activate the selected text on Steam

ما هو Activate on Steam؟

Activate on Steam هو إضافة Chrome تم تطويرها بواسطة jshackles، والميزة الرئيسية لها هي "Adds a context menu to activate the selected text on Steam".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Activate on Steam

قم بتنزيل ملفات الامتداد Activate on Steam بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This simple Chrome extension will add a context menu when right clicking on selected text to activate as a Steam product.

This is useful for external sites that sell Steam keys and allows you to quickly and easily register your games on Steam without having to copy and paste or open the Steam client.

This extension is open source.  The source code can be found at https://github.com/jshackles/ActivateOnSteam                    

معلومات أساسية عن التمديد

الاسم Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
عنوان URL الرسمي https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
الوصف Adds a context menu to activate the selected text on Steam
حجم الملف 31.62 KB
عدد التثبيتات 2,000
النسخة الحالية 0.1
آخر تحديث 2017-09-01
تاريخ النشر 2017-09-01
تقييم 4.33/5 مجموع تقييمات 39
المطور jshackles
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Activate on Steam",
    "short_name": "ActivateOnSteam",
    "description": "Adds a context menu to activate the selected text on Steam",
    "version": "0.1",
    "minimum_chrome_version": "38",
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "img\/logo.png",
        "32": "img\/logo_32.png",
        "128": "img\/logo_128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "img\/logo.png",
            "32": "img\/logo_32.png",
            "128": "img\/logo_128.png"
        }
    }
}