Go Links Utility

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

ما هو Go Links Utility؟

Go Links Utility هو إضافة Chrome تم تطويرها بواسطة https://golinks.com، والميزة الرئيسية لها هي "Get inline go/link detection and much more with this power extension".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Go Links Utility

قم بتنزيل ملفات الامتداد Go Links Utility بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة https://www.golinks.com/help/
عنوان صفحة سياسة الخصوصية 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": [
                ""
            ]
        }
    ]
}