RoLinker

Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.

Co to jest RoLinker?

RoLinker to rozszerzenie Chrome opracowane przez Scarious, a jego główną funkcją jest „Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RoLinker

Pobierz pliki rozszerzeń RoLinker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Roblox recently removed hypertext references from game card tiles (removing the ability to open games in new tabs). This extension fixes that problem by adding the hypertext reference back to the game card tiles.                    

Podstawowe informacje o rozszerzeniu

Nazwa RoLinker RoLinker
ID hfkcemahdlffhnlkogfmddikhggegfmg
Oficjalny URL https://chromewebstore.google.com/detail/rolinker/hfkcemahdlffhnlkogfmddikhggegfmg
Opis Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.
Rozmiar pliku 35.17 KB
Liczba instalacji 2,964
Aktualna Wersja 1.1.0.2
Ostatnia Aktualizacja 2021-06-03
Data Publikacji 2021-06-02
Ocena 4.75/5 Łącznie 12 Oceny
Deweloper Scarious
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/BrittonFischer/RoLinker
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RoLinker",
    "version": "1.1.0.2",
    "description": "Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.",
    "icons": {
        "128": "\/icons\/icon128.png",
        "48": "\/icons\/icon48.png",
        "16": "\/icons\/icon16.png"
    },
    "content_scripts": [
        {
            "js": [
                "\/js\/jquery.js"
            ],
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "js": [
                "\/js\/linker.js"
            ],
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}