Trotto go links
This extension makes Trotto "go links" work seamlessly in Chrome.
Trotto go links क्या है?
Trotto go links https://trot.to द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension makes Trotto "go links" work seamlessly in Chrome."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trotto go links एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } ] } |