Trotto go links

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

Trotto go linksとは何ですか?

Trotto go linksはhttps://trot.toによって開発されたChromeの拡張機能で、その主な機能は「This extension makes Trotto "go links" work seamlessly in Chrome.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Trotto go links拡張機能のCRXファイルをダウンロード

Trotto go links拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.trot.to
ヘルプページのURL https://www.trot.to/how-it-works
プライバシーポリシーページのURL 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"
        }
    ]
}