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.”。
擴展截圖
下載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 |
ID | nkeoojidblilnkcbbmfhaeebndapehjk |
官方網址 | 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" } ] } |