Shorty
URL Shortener
Co to jest Shorty?
Shorty to rozszerzenie Chrome opracowane przez https://r3bl.com, a jego główną funkcją jest „URL Shortener”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Shorty
Pobierz pliki rozszerzeń Shorty w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cbgcnhimnlnjejdopldfdicfingmaijg |
| Oficjalny URL | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
| Opis | URL Shortener |
| Rozmiar pliku | 120 KB |
| Liczba instalacji | 50 |
| Aktualna Wersja | 2.1 |
| Ostatnia Aktualizacja | 2023-03-11 |
| Data Publikacji | 2020-05-31 |
| Ocena | 5.00/5 Łącznie 5 Oceny |
| Deweloper | https://r3bl.com |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | http://r3bl.com |
| Adres URL Strony Pomocy | https://github.com/r3bl-org/shorty/issues |
| Obsługiwane Języki | 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\/*"
]
} | |