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
Eメール [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": [
                ""
            ]
        }
    ]
}