Shorty
URL Shortener
Apa itu Shorty?
Shorty adalah ekstensi Chrome yang dikembangkan oleh https://r3bl.com, dan fitur utamanya adalah "URL Shortener".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Shorty
Unduh file ekstensi Shorty dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.
Informasi Dasar Ekstensi
Nama | Shorty |
ID | cbgcnhimnlnjejdopldfdicfingmaijg |
URL Resmi | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
Deskripsi | URL Shortener |
Ukuran File | 120 KB |
Jumlah Instalasi | 50 |
Versi Saat Ini | 2.1 |
Terakhir Diperbarui | 2023-03-11 |
Tanggal Publikasi | 2020-05-31 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | https://r3bl.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://r3bl.com |
URL Halaman Bantuan | https://github.com/r3bl-org/shorty/issues |
Bahasa yang Didukung | 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\/*" ] } |