RoLinker

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

Vad är RoLinker?

RoLinker är en Chrome-tillägg utvecklad av Scarious, och dess huvudfunktion är "Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.".

Tilläggsskärmbilder

screenshot

Ladda ner RoLinker-förlängningens CRX-fil

Ladda ner RoLinker-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

                        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.                    

Grundläggande Information om Tillägg

Namn RoLinker RoLinker
ID hfkcemahdlffhnlkogfmddikhggegfmg
Officiell webbadress https://chromewebstore.google.com/detail/rolinker/hfkcemahdlffhnlkogfmddikhggegfmg
Beskrivning Adds a hypertext reference to game card tiles on the Roblox games page so that you can open them in new tabs.
Filstorlek 35.17 KB
Antal Installationer 2,964
Aktuell Version 1.1.0.2
Senast Uppdaterad 2021-06-03
Publiceringsdatum 2021-06-02
Betyg 4.75/5 Totalt 12 Betyg
Utvecklare Scarious
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/BrittonFischer/RoLinker
Stödda Språk 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
}