Go Links Utility

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

Vad är Go Links Utility?

Go Links Utility är en Chrome-tillägg utvecklad av https://golinks.com, och dess huvudfunktion är "Get inline go/link detection and much more with this power extension".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Go Links Utility-förlängningens CRX-fil

Ladda ner Go Links Utility-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

                        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.                    

Grundläggande Information om Tillägg

Namn Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
Officiell webbadress https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
Beskrivning Get inline go/link detection and much more with this power extension
Filstorlek 2.44 MB
Antal Installationer 62
Aktuell Version 3.1.1
Senast Uppdaterad 2023-12-05
Publiceringsdatum 2022-01-06
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://golinks.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.golinks.com/
Hjälpsida URL https://www.golinks.com/help/
URL till Sekretesspolicy Sidan https://www.golinks.io/privacy.php
Stödda Språk 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": [
                ""
            ]
        }
    ]
}