Go Links Utility

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

Go Links Utility là gì?

Go Links Utility là một tiện ích mở rộng Chrome được phát triển bởi https://golinks.com, và tính năng chính của nó là "Get inline go/link detection and much more with this power extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Go Links Utility

Tải xuống các tệp mở rộng Go Links Utility dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
URL Chính Thức https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
Mô tả Get inline go/link detection and much more with this power extension
Kích Thước Tệp 2.44 MB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 3.1.1
Cập Nhật Lần Cuối 2023-12-05
Ngày Phát Hành 2022-01-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://golinks.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.golinks.com/
URL Trang Trợ Giúp https://www.golinks.com/help/
URL Trang Chính Sách Bảo Mật https://www.golinks.io/privacy.php
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}