LoL Assist Browser

Unblocks access to Garena's LoL Assist

Cos'è LoL Assist Browser?

LoL Assist Browser è un'estensione di Chrome sviluppata da oangelingo, e la sua funzione principale è "Unblocks access to Garena's LoL Assist".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione LoL Assist Browser

Scarica i file di estensione LoL Assist Browser in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Now support TH, SG/MY, PH, VN, and ID regions!

Since Garena blocked access to LoL Assist web app from PC. I wrote this small extension to bypass the block by simply faking the user-agent string, and I'd like to share it.

Click the Teemo icon to launch Garena's LoL Assist. Don't forget to set the region.

Source code: https://github.com/secretdataz/LolHelperUnblock                    

Informazioni di Base sull'Estensione

Nome LoL Assist Browser LoL Assist Browser
ID jblhogghjdmmakopfnedfheffpepphho
URL Ufficiale https://chromewebstore.google.com/detail/lol-assist-browser/jblhogghjdmmakopfnedfheffpepphho
Descrizione Unblocks access to Garena's LoL Assist
Dimensione del File 54.92 KB
Conteggio Installazioni 175
Versione Corrente 0.2.0
Ultimo Aggiornamento 2018-03-26
Data di Pubblicazione 2018-03-25
Valutazione 4.38/5 Totale 8 Valutazioni
Sviluppatore oangelingo
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "homepage_url": "http:\/\/github.com\/secretdataz\/LolHelperUnblock\/",
    "name": "LoL Assist Browser",
    "description": "Unblocks access to Garena's LoL Assist",
    "version": "0.2.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/lolhelperth.garenanow.com\/*",
                "*:\/\/lolhelperph.garenanow.com\/*",
                "*:\/\/lolhelpersg.garenanow.com\/*",
                "*:\/\/lolhelpervn.garenanow.com\/*",
                "*:\/\/lolhelperid.garenanow.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon.png",
        "128": "Teemo.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "*:\/\/lolhelperth.garenanow.com\/*",
        "*:\/\/lolhelperph.garenanow.com\/*",
        "*:\/\/lolhelpersg.garenanow.com\/*",
        "*:\/\/lolhelpervn.garenanow.com\/*",
        "*:\/\/lolhelperid.garenanow.com\/*"
    ]
}