Rust store enhancer

Extension allows you to buy skins quickly

Rust store enhancer là gì?

Rust store enhancer là một tiện ích mở rộng Chrome được phát triển bởi FA, và tính năng chính của nó là "Extension allows you to buy skins quickly".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Rust store enhancer

Tải xuống các tệp mở rộng Rust store enhancer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Rust store enhancer Rust store enhancer
ID npifabgmhhieoleailiphhgijpfbopec
URL Chính Thức https://chromewebstore.google.com/detail/rust-store-enhancer/npifabgmhhieoleailiphhgijpfbopec
Mô tả Extension allows you to buy skins quickly
Kích Thước Tệp 26.9 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2019-07-13
Ngày Phát Hành 2019-07-13
Nhà Phát Triển FA
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}