Rust store enhancer

Extension allows you to buy skins quickly

Wat is Rust store enhancer?

Rust store enhancer is een Chrome-extensie ontwikkeld door FA, en de belangrijkste functie is "Extension allows you to buy skins quickly".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Rust store enhancer

Download Rust store enhancer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Rust store enhancer Rust store enhancer
ID npifabgmhhieoleailiphhgijpfbopec
Officiële URL https://chromewebstore.google.com/detail/rust-store-enhancer/npifabgmhhieoleailiphhgijpfbopec
Beschrijving Extension allows you to buy skins quickly
Bestandsgrootte 26.9 KB
Aantal Installaties 24
Huidige Versie 0.1.0
Laatst Bijgewerkt 2019-07-13
Publicatiedatum 2019-07-13
Ontwikkelaar FA
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}