Trotto go links

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

Co je Trotto go links?

Trotto go links je rozšíření Chrome vyvinuté https://trot.to, a jeho hlavní funkcí je „This extension makes Trotto "go links" work seamlessly in Chrome.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Trotto go links

Stáhněte si soubory rozšíření Trotto go links ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Trotto go links Trotto go links
ID nkeoojidblilnkcbbmfhaeebndapehjk
Oficiální URL https://chromewebstore.google.com/detail/trotto-go-links/nkeoojidblilnkcbbmfhaeebndapehjk
Popis This extension makes Trotto "go links" work seamlessly in Chrome.
Velikost souboru 47.9 KB
Počet instalací 13,243
Aktuální Verze 1.27
Poslední Aktualizace 2023-05-16
Datum Vydání 2020-05-31
Hodnocení 3.67/5 Celkem 6 Hodnocení
Vývojář https://trot.to
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.trot.to
URL Stránky Nápovědy https://www.trot.to/how-it-works
URL Stránky Zásad Ochrany Soukromí https://www.trot.to/privacy
Podporované Jazyky 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"
        }
    ]
}