Shorty
URL Shortener
Shorty क्या है?
Shorty https://r3bl.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "URL Shortener"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Shorty एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.
एक्सटेंशन की मूल जानकारी
नाम | Shorty |
ID | cbgcnhimnlnjejdopldfdicfingmaijg |
आधिकारिक URL | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
विवरण | URL Shortener |
फ़ाइल का आकार | 120 KB |
स्थापना संख्या | 50 |
वर्तमान संस्करण | 2.1 |
अंतिम अपडेट | 2023-03-11 |
प्रकाशन तिथि | 2020-05-31 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | https://r3bl.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://r3bl.com |
सहायता पृष्ठ URL | https://github.com/r3bl-org/shorty/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shorty", "description": "URL Shortener", "version": "2.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_title": "Click to shorten URL", "default_popup": "index.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "Shortens URL in address bar" } }, "permissions": [ "clipboardWrite", "activeTab" ], "host_permissions": [ "*:\/\/*.tinyurl.com\/*" ] } |