Go Links Utility

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

Cos'è Go Links Utility?

Go Links Utility è un'estensione di Chrome sviluppata da https://golinks.com, e la sua funzione principale è "Get inline go/link detection and much more with this power extension".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Go Links Utility

Scarica i file di estensione Go Links Utility 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
URL Ufficiale https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
Descrizione Get inline go/link detection and much more with this power extension
Dimensione del File 2.44 MB
Conteggio Installazioni 62
Versione Corrente 3.1.1
Ultimo Aggiornamento 2023-12-05
Data di Pubblicazione 2022-01-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://golinks.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.golinks.com/
URL della Pagina di Aiuto https://www.golinks.com/help/
URL della Pagina della Politica sulla Privacy https://www.golinks.io/privacy.php
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}