Trotto go links

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

Trotto go links là gì?

Trotto go links là một tiện ích mở rộng Chrome được phát triển bởi https://trot.to, và tính năng chính của nó là "This extension makes Trotto "go links" work seamlessly in Chrome.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trotto go links

Tải xuống các tệp mở rộng Trotto go links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trotto go links Trotto go links
ID nkeoojidblilnkcbbmfhaeebndapehjk
URL Chính Thức https://chromewebstore.google.com/detail/trotto-go-links/nkeoojidblilnkcbbmfhaeebndapehjk
Mô tả This extension makes Trotto "go links" work seamlessly in Chrome.
Kích Thước Tệp 47.9 KB
Số Lần Cài Đặt 13,243
Phiên Bản Hiện Tại 1.27
Cập Nhật Lần Cuối 2023-05-16
Ngày Phát Hành 2020-05-31
Đánh Giá 3.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://trot.to
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.trot.to
URL Trang Trợ Giúp https://www.trot.to/how-it-works
URL Trang Chính Sách Bảo Mật https://www.trot.to/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}