Cut it - URL Shortener
Shorten your URL's from anywhere.
Was ist Cut it - URL Shortener?
Cut it - URL Shortener ist eine Chrome-Erweiterung, die von https://cut.it.nf entwickelt wurde, und ihr Hauptmerkmal ist "Shorten your URL's from anywhere.".
Erweiterungsscreenshots
Cut it - URL Shortener-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cut it - 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
Create short links from any page and share them with the world. In this extension you can shorten any link by 2 options 1. The user can click on the icon of this extension in your "Addons" above 2. The user can shorten the link from Context Menu (Right Click Menu), just go over a link,video,image etc, click on the right click button and click "Shorten URL with Cut.it" wait a second and the Short URL will be copied automatically
Grundlegende Informationen zur Erweiterung
Name | Cut it - URL Shortener |
ID | oobhmofbjccdinehjdhconeombgnfhkj |
Offizielle URL | https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj |
Beschreibung | Shorten your URL's from anywhere. |
Dateigröße | 63.59 KB |
Installationsanzahl | 62 |
Aktuelle Version | 1.4 |
Letztes Update | 2022-06-01 |
Veröffentlichungsdatum | 2022-02-16 |
Entwickler | https://cut.it.nf |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://cut.it.nf |
Hilfeseite URL | https://cut.it.nf/contact |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Cut it - URL Shortener", "description": "Shorten your URL's from anywhere.", "version": "1.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_icon": "icon.png", "default_popup": "views\/popup.html" }, "background": { "service_worker": "background.js" }, "permissions": [ "contextMenus" ], "host_permissions": [ "*:\/\/*\/*" ], "options_page": "views\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ] } |