Go Links Utility

Get inline go/link detection and much more with this power extension

Co je Go Links Utility?

Go Links Utility je rozšíření Chrome vyvinuté https://golinks.com, a jeho hlavní funkcí je „Get inline go/link detection and much more with this power extension“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Go Links Utility

Stáhněte si soubory rozšíření Go Links Utility ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Golinks are short intuitive links that are accessible anywhere. This extension enables users to convert any go/link that appears on a page and convert it into a clickable link saving seconds each time.                    

Základní Informace o Rozšíření

Název Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
Oficiální URL https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
Popis Get inline go/link detection and much more with this power extension
Velikost souboru 2.44 MB
Počet instalací 62
Aktuální Verze 3.1.1
Poslední Aktualizace 2023-12-05
Datum Vydání 2022-01-06
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://golinks.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.golinks.com/
URL Stránky Nápovědy https://www.golinks.com/help/
URL Stránky Zásad Ochrany Soukromí https://www.golinks.io/privacy.php
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Go Links Utility",
    "description": "Get inline go\/link detection and much more with this power extension",
    "homepage_url": "https:\/\/www.golinks.io",
    "version": "3.1.1",
    "icons": {
        "16": "icons\/white-icon16.png",
        "48": "icons\/white-icon48.png",
        "128": "icons\/white-icon128.png"
    },
    "action": {
        "default_icon": "icons\/white-icon48.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "toggleQuickLauncher": {
            "suggested_key": {
                "default": "Alt+F",
                "mac": "Alt+F"
            },
            "description": "Toggle GoLinks Launcher"
        }
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "cookies",
        "scripting",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; connect-src https:\/\/*.golinks.io https:\/\/www.golinks.io\/; object-src 'self'; font-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.golinks.io\/*",
                "*:\/\/*.golinks.com\/*"
            ],
            "js": [
                "identifier.js"
            ],
            "run_at": "document_start"
        }
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "launcher.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}