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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}