Rust store enhancer

Extension allows you to buy skins quickly

ما هو Rust store enhancer؟

Rust store enhancer هو إضافة Chrome تم تطويرها بواسطة FA، والميزة الرئيسية لها هي "Extension allows you to buy skins quickly".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Rust store enhancer

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

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

                        This extension will adds a "Add to cart" button on each item on the store. Enjoy

Why I created this extension? 
Because I like to buy Rust skins on Steam and I don't want to bother clicking on each item to add it to the cart. It's very simple script but it does the job really well as I've been using this for quite a while and I though it may be useful for other, and as they say sharing is caring.

tl;dr
Laziness                    

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

الاسم Rust store enhancer Rust store enhancer
ID npifabgmhhieoleailiphhgijpfbopec
عنوان URL الرسمي https://chromewebstore.google.com/detail/rust-store-enhancer/npifabgmhhieoleailiphhgijpfbopec
الوصف Extension allows you to buy skins quickly
حجم الملف 26.9 KB
عدد التثبيتات 24
النسخة الحالية 0.1.0
آخر تحديث 2019-07-13
تاريخ النشر 2019-07-13
المطور FA
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rust store enhancer",
    "description": "Extension allows you to buy skins quickly",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/store.steampowered.com\/itemstore\/252490\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}