Short Copy
Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.
Was ist Short Copy?
Short Copy ist eine Chrome-Erweiterung, die von https://theodo.red entwickelt wurde, und ihr Hauptmerkmal ist "Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.".
Erweiterungsscreenshots
Short Copy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Short Copy-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
A very simple Chrome extension which enables you to copy the current url, and have it quickly shortened, in one easy key combination. Perfect if you're just like me, and you hate yourself when you share a huge 100+ character URL with someone. Keep it clean, keep it simple. Alt+Shift+C. [UPDATE] Switched to using is.gd due to their brilliantly simple API. Scissor element of icon from: https://icons8.com/
Grundlegende Informationen zur Erweiterung
Name | Short Copy |
ID | ehelhgbbjhjbfaleajkhjbdpomnbnkob |
Offizielle URL | https://chromewebstore.google.com/detail/short-copy/ehelhgbbjhjbfaleajkhjbdpomnbnkob |
Beschreibung | Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard. |
Dateigröße | 12.63 KB |
Installationsanzahl | 48 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2016-06-09 |
Veröffentlichungsdatum | 2016-06-09 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://theodo.red |
Zahlungsart | free |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Short Copy", "version": "1.1.1", "description": "Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.", "permissions": [ "https:\/\/*.is.gd\/*", "clipboardWrite", "activeTab", "notifications" ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "commands": { "toggle-pin": { "suggested_key": { "default": "Alt+Shift+C" }, "description": "Copies the URL." } }, "manifest_version": 2 } |