Create Link
Copy current page URL to clipboard in various formats.
Qu'est-ce que Create Link ?
Create Link est une extension Chrome développée par ku, et sa fonction principale est "Copy current page URL to clipboard in various formats.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Create Link
Téléchargez les fichiers d'extension Create Link 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
(Tested on OSX, WindowsXP, Windows7/64bit) Make HTML link tag easily like Firefox addon Make Link. Copy current page title and URL to clipboard in various formats. *plain text ([page title] [page URL]) *HTML link ([page title] *markdown *mediawiki In extension options page, you can configure formats and shortcut key. Source code is available at http://github.com/ku/CreateLink Tweet @ku if something is wrong with Create Link
Informations de Base sur l'Extension
Nom | Create Link |
ID | gcmghdmnkfdbncmnmlkkglmnnhagajbm |
URL Officiel | https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm |
Description | Copy current page URL to clipboard in various formats. |
Taille du Fichier | 32.25 KB |
Nombre d'Installations | 40,175 |
Version Actuelle | 0.5.7 |
Dernière Mise à Jour | 2022-01-12 |
Date de Publication | 2017-07-25 |
Évaluation | 4.25/5 Total 166 Évaluations |
Développeur | ku |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://twitter.com/ku/ |
URL de la Page d'Aide | http://github.com/ku/CreateLink |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Create Link", "version": "0.5.7", "manifest_version": 3, "background": { "service_worker": "js\/service-worker.js" }, "action": { "default_icon": "icon64.png", "default_title": "Create Link", "default_popup": "popup.html" }, "description": "Copy current page URL to clipboard in various formats.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "64": "icon64.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "css": [], "js": [ "js\/content.js" ], "run_at": "document_end", "all_frames": false } ], "commands": { "current-tab-link": { "description": "Current tab in default format" } }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "contextMenus", "storage", "clipboardWrite" ] } |