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
电子邮箱 [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"
        }
    ]
}