Trotto go links

This extension makes Trotto "go links" work seamlessly in Chrome.

ما هو Trotto go links؟

Trotto go links هو إضافة Chrome تم تطويرها بواسطة https://trot.to، والميزة الرئيسية لها هي "This extension makes Trotto "go links" work seamlessly in Chrome.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Trotto go links

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

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

                        Trotto shortens your long and frequently-used URLs to elegant go links like "go/roadmap" or "go/logs", making them intuitively memorable, easily shareable, and accessible from anywhere in the world.

Go links are stored with your organization and can only be used by team members with valid company accounts, so you'll never see or conflict with links belonging to other organizations.

Add this extension to use go links seamlessly in Chrome, and create go links easily from any webpage.                    

معلومات أساسية عن التمديد

الاسم Trotto go links Trotto go links
ID nkeoojidblilnkcbbmfhaeebndapehjk
عنوان URL الرسمي https://chromewebstore.google.com/detail/trotto-go-links/nkeoojidblilnkcbbmfhaeebndapehjk
الوصف This extension makes Trotto "go links" work seamlessly in Chrome.
حجم الملف 47.9 KB
عدد التثبيتات 13,243
النسخة الحالية 1.27
آخر تحديث 2023-05-16
تاريخ النشر 2020-05-31
تقييم 3.67/5 مجموع تقييمات 6
المطور https://trot.to
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.trot.to
عنوان صفحة المساعدة https://www.trot.to/how-it-works
عنوان صفحة سياسة الخصوصية https://www.trot.to/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trotto go links",
    "description": "This extension makes Trotto \"go links\" work seamlessly in Chrome.",
    "storage": {
        "managed_schema": "schema.json"
    },
    "version": "1.27",
    "icons": {
        "48": "[email protected]",
        "128": "[email protected]"
    },
    "browser_action": {
        "default_icon": "[email protected]",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/go\/*",
        "*:\/\/*.trot.to\/*"
    ],
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.trot.to\/*"
            ],
            "js": [
                "data_injector.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.trot.to\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ]
}