Shorty
URL Shortener
Vad är Shorty?
Shorty är en Chrome-tillägg utvecklad av https://r3bl.com, och dess huvudfunktion är "URL Shortener".
Tilläggsskärmbilder
Ladda ner Shorty-förlängningens CRX-fil
Ladda ner Shorty-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it. Grundläggande Information om Tillägg
| Namn | |
| ID | cbgcnhimnlnjejdopldfdicfingmaijg |
| Officiell webbadress | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
| Beskrivning | URL Shortener |
| Filstorlek | 120 KB |
| Antal Installationer | 50 |
| Aktuell Version | 2.1 |
| Senast Uppdaterad | 2023-03-11 |
| Publiceringsdatum | 2020-05-31 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | https://r3bl.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://r3bl.com |
| Hjälpsida URL | https://github.com/r3bl-org/shorty/issues |
| Stödda Språk | 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\/*"
]
} | |