Go Links Utility

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

Qu'est-ce que Go Links Utility ?

Go Links Utility est une extension Chrome développée par https://golinks.com, et sa fonction principale est "Get inline go/link detection and much more with this power extension".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Go Links Utility

Téléchargez les fichiers d'extension Go Links Utility au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
URL Officiel https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
Description Get inline go/link detection and much more with this power extension
Taille du Fichier 2.44 MB
Nombre d'Installations 62
Version Actuelle 3.1.1
Dernière Mise à Jour 2023-12-05
Date de Publication 2022-01-06
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://golinks.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.golinks.com/
URL de la Page d'Aide https://www.golinks.com/help/
URL de la Page de Politique de Confidentialité https://www.golinks.io/privacy.php
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}