Copy URL And Title
Copy page URL and ticket title
Qu'est-ce que Copy URL And Title ?
Copy URL And Title est une extension Chrome développée par NeuLion Web, et sa fonction principale est "Copy page URL and ticket title".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Copy URL And Title
Téléchargez les fichiers d'extension Copy URL And Title 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
Copy both page URL and page title. Click: Copy Link + Title Double Click: Copy Link + Title + JIRA Assignee Ctrl + Click: Short Link + Title If you copy to Rich Text Editor like MS Word, Google Docs, YouDao Note, it will keep the href of the URL
Informations de Base sur l'Extension
Nom | |
ID | hccpddblgkmpaboaibeijeijhpmddefg |
URL Officiel | https://chrome.google.com/webstore/detail/copy-url-and-title/hccpddblgkmpaboaibeijeijhpmddefg |
Description | Copy page URL and ticket title |
Taille du Fichier | 35.5 KB |
Nombre d'Installations | 101 |
Version Actuelle | 1.12-20200207 |
Dernière Mise à Jour | 2020-03-03 |
Date de Publication | 2020-03-03 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | NeuLion Web |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy URL And Title", "description": "Copy page URL and ticket title", "version": "1.12", "version_name": "1.12-20200207", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "tabs", "background", "notifications", "clipboardWrite", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "38": "icon_38.png", "86": "icon_86.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "copy.js" ], "run_at": "document_end", "all_frames": false } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "name": "Click to copy url and title", "default_icon": "icon_38.png" }, "manifest_version": 2 } |