Short Copy
Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.
Wat is Short Copy?
Short Copy is een Chrome-extensie ontwikkeld door https://theodo.red, en de belangrijkste functie is "Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.".
Extensie Screenshots
Download het CRX-bestand van de extensie Short Copy
Download Short Copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/
Basisinformatie over de Extensie
Naam | Short Copy |
ID | ehelhgbbjhjbfaleajkhjbdpomnbnkob |
Officiële URL | https://chromewebstore.google.com/detail/short-copy/ehelhgbbjhjbfaleajkhjbdpomnbnkob |
Beschrijving | Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard. |
Bestandsgrootte | 12.63 KB |
Aantal Installaties | 48 |
Huidige Versie | 1.1.1 |
Laatst Bijgewerkt | 2016-06-09 |
Publicatiedatum | 2016-06-09 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://theodo.red |
Betalingswijze | free |
Ondersteunde Talen | 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 } |