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
官方URL 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": [
                ""
            ]
        }
    ]
}