Shorten.rest URL Shortener
Easily create & manage branded short links
Was ist Shorten.rest URL Shortener?
Shorten.rest URL Shortener ist eine Chrome-Erweiterung, die von https://shorten.rest entwickelt wurde, und ihr Hauptmerkmal ist "Easily create & manage branded short links".
Erweiterungsscreenshots
Shorten.rest URL Shortener-Erweiterungs-CRX-Datei herunterladen
Laden Sie Shorten.rest URL Shortener-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Shorten.REST URL Shortening API Chrome Extension - Easily shorten and manage your short branded URLs without having to login to your account.
Search, Update & Manage your existing short URLs with ease.
Choose between short.fyi and your own branded domains (multiple domains allowed!).
Customize the URI (vanity / alias / URL ending) to make it meaningful.
Add Retargeting & Tracking pixels for each URL or at the account level.
Add UTM's to any URL.
Destination URL character limit of 8192.
Get your free API key at https://shorten.rest Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eaiocdhmmbfbfcgmlmhnpeehiddddanb |
| Offizielle URL | https://chromewebstore.google.com/detail/shortenrest-url-shortener/eaiocdhmmbfbfcgmlmhnpeehiddddanb |
| Beschreibung | Easily create & manage branded short links |
| Dateigröße | 1.99 MB |
| Installationsanzahl | 60 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2020-05-29 |
| Veröffentlichungsdatum | 2020-05-28 |
| Bewertung | 5.00/5 Insgesamt 12 Bewertungen |
| Entwickler | https://shorten.rest |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://shorten.rest |
| Hilfeseite URL | https://shorten.rest/knowledge-base/ |
| URL der Datenschutzrichtlinien-Seite | https://apilads.com/privacy-policy |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Shorten.rest URL Shortener",
"description": "Easily create & manage branded short links",
"version": "1.0.1",
"manifest_version": 2,
"browser_action": {
"default_popup": "index.html",
"default_icon": {
"16": "assets\/images\/logo16.png",
"32": "assets\/images\/logo32.png",
"48": "assets\/images\/logo48.png",
"128": "assets\/images\/logo128.png"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js",
"runtime.js"
]
}
],
"icons": {
"16": "assets\/images\/logo16.png",
"32": "assets\/images\/logo32.png",
"48": "assets\/images\/logo48.png",
"128": "assets\/images\/logo128.png"
},
"permissions": [
"storage",
"tabs",
"activeTab",
"https:\/\/*.shorten.rest\/",
"https:\/\/api.shorten.rest\/",
"https:\/\/shorten.rest\/"
]
} | |