Rust store enhancer

Extension allows you to buy skins quickly

What is Rust store enhancer?

Rust store enhancer is a Chrome extension developed by FA, and its main feature is "Extension allows you to buy skins quickly".

Extension Screenshots

screenshot
screenshot

Download Rust store enhancer Extension CRX File

Download Rust store enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Rust store enhancer Rust store enhancer
ID npifabgmhhieoleailiphhgijpfbopec
Official URL https://chromewebstore.google.com/detail/rust-store-enhancer/npifabgmhhieoleailiphhgijpfbopec
Description Extension allows you to buy skins quickly
File Size 26.9 KB
Installation Count 24
Current Version 0.1.0
Last Updated 2019-07-13
Publish Date 2019-07-13
Developer FA
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}