Short Copy
Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.
Qu'est-ce que Short Copy ?
Short Copy est une extension Chrome développée par https://theodo.red, et sa fonction principale est "Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Short Copy
Téléchargez les fichiers d'extension Short Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/
Informations de Base sur l'Extension
Nom | Short Copy |
ID | ehelhgbbjhjbfaleajkhjbdpomnbnkob |
URL Officiel | https://chromewebstore.google.com/detail/short-copy/ehelhgbbjhjbfaleajkhjbdpomnbnkob |
Description | Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard. |
Taille du Fichier | 12.63 KB |
Nombre d'Installations | 48 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2016-06-09 |
Date de Publication | 2016-06-09 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://theodo.red |
Type de Paiement | free |
Langues Prises en Charge | 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 } |