Go Links Utility

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

Apa itu Go Links Utility?

Go Links Utility adalah ekstensi Chrome yang dikembangkan oleh https://golinks.com, dan fitur utamanya adalah "Get inline go/link detection and much more with this power extension".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Go Links Utility

Unduh file ekstensi Go Links Utility dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
URL Resmi https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
Deskripsi Get inline go/link detection and much more with this power extension
Ukuran File 2.44 MB
Jumlah Instalasi 62
Versi Saat Ini 3.1.1
Terakhir Diperbarui 2023-12-05
Tanggal Publikasi 2022-01-06
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://golinks.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.golinks.com/
URL Halaman Bantuan https://www.golinks.com/help/
URL Halaman Kebijakan Privasi https://www.golinks.io/privacy.php
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}