Jstris Companion

A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…

Vad är Jstris Companion?

Jstris Companion är en Chrome-tillägg utvecklad av Sean Earle, och dess huvudfunktion är "A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Jstris Companion-förlängningens CRX-fil

Ladda ner Jstris Companion-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for all keys, and inject your own CSS/JS!                    

Grundläggande Information om Tillägg

Namn Jstris Companion Jstris Companion
ID hcfobmlocggcombmbgpncmbknnggjlkf
Officiell webbadress https://chromewebstore.google.com/detail/jstris-companion/hcfobmlocggcombmbgpncmbknnggjlkf
Beskrivning A simple extension for customising Jstris, this will allow you to change your skin, ghost, background, add a second key binding for…
Filstorlek 12.27 KB
Antal Installationer 557
Aktuell Version 0.3
Senast Uppdaterad 2019-10-13
Publiceringsdatum 2019-10-13
Betyg 4.43/5 Totalt 7 Betyg
Utvecklare Sean Earle
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jstris Companion",
    "version": "0.3",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/jstris.jezevec10.com\/*"
            ],
            "js": [
                "jstris-companion.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icon.png"
        }
    },
    "icons": {
        "64": "icon.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}