Go Links Utility

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

O que é Go Links Utility?

Go Links Utility é uma extensão do Chrome desenvolvida por https://golinks.com, e sua principal característica é "Get inline go/link detection and much more with this power extension".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Go Links Utility

Baixe arquivos de extensão Go Links Utility no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
URL Oficial https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
Descrição Get inline go/link detection and much more with this power extension
Tamanho do Arquivo 2.44 MB
Contagem de Instalações 62
Versão Atual 3.1.1
Última Atualização 2023-12-05
Data de Publicação 2022-01-06
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://golinks.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.golinks.com/
URL da Página de Ajuda https://www.golinks.com/help/
URL da Página de Política de Privacidade https://www.golinks.io/privacy.php
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}