Trotto go links

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

Was ist Trotto go links?

Trotto go links ist eine Chrome-Erweiterung, die von https://trot.to entwickelt wurde, und ihr Hauptmerkmal ist "This extension makes Trotto "go links" work seamlessly in Chrome.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Trotto go links-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trotto go links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Trotto go links Trotto go links
ID nkeoojidblilnkcbbmfhaeebndapehjk
Offizielle URL https://chromewebstore.google.com/detail/trotto-go-links/nkeoojidblilnkcbbmfhaeebndapehjk
Beschreibung This extension makes Trotto "go links" work seamlessly in Chrome.
Dateigröße 47.9 KB
Installationsanzahl 13,243
Aktuelle Version 1.27
Letztes Update 2023-05-16
Veröffentlichungsdatum 2020-05-31
Bewertung 3.67/5 Insgesamt 6 Bewertungen
Entwickler https://trot.to
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.trot.to
Hilfeseite URL https://www.trot.to/how-it-works
URL der Datenschutzrichtlinien-Seite https://www.trot.to/privacy
Unterstützte Sprachen 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"
        }
    ]
}