Copy URL And Title
Copy page URL and ticket title
Wat is Copy URL And Title?
Copy URL And Title is een Chrome-extensie ontwikkeld door NeuLion Web, en de belangrijkste functie is "Copy page URL and ticket title".
Extensie Screenshots
Download het CRX-bestand van de extensie Copy URL And Title
Download Copy URL And Title-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
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
Basisinformatie over de Extensie
Naam | |
ID | hccpddblgkmpaboaibeijeijhpmddefg |
Officiële URL | https://chrome.google.com/webstore/detail/copy-url-and-title/hccpddblgkmpaboaibeijeijhpmddefg |
Beschrijving | Copy page URL and ticket title |
Bestandsgrootte | 35.5 KB |
Aantal Installaties | 101 |
Huidige Versie | 1.12-20200207 |
Laatst Bijgewerkt | 2020-03-03 |
Publicatiedatum | 2020-03-03 |
Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | NeuLion Web |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |