Go Links Utility

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

什麼是Go Links Utility?

Go Links Utility是由https://golinks.com開發的Chrome擴展程式,該擴展的主要功能是“Get inline go/link detection and much more with this power extension”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Go Links Utility擴展crx文件

下載Go Links Utility擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
官方網址 https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
簡介 Get inline go/link detection and much more with this power extension
檔案大小 2.44 MB
安裝次數 62
目前版本 3.1.1
更新時間 2023-12-05
上架時間 2022-01-06
評分 5.00/5 共 1 次評分
開發者 https://golinks.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.golinks.com/
說明頁面URL https://www.golinks.com/help/
隱私政策頁面URL https://www.golinks.io/privacy.php
支援的語言 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": [
                ""
            ]
        }
    ]
}