Copy URL And Title
Copy page URL and ticket title
Cos'è Copy URL And Title?
Copy URL And Title è un'estensione di Chrome sviluppata da NeuLion Web, e la sua funzione principale è "Copy page URL and ticket title".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Copy URL And Title
Scarica i file di estensione Copy URL And Title in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | hccpddblgkmpaboaibeijeijhpmddefg |
| URL Ufficiale | https://chrome.google.com/webstore/detail/copy-url-and-title/hccpddblgkmpaboaibeijeijhpmddefg |
| Descrizione | Copy page URL and ticket title |
| Dimensione del File | 35.5 KB |
| Conteggio Installazioni | 101 |
| Versione Corrente | 1.12-20200207 |
| Ultimo Aggiornamento | 2020-03-03 |
| Data di Pubblicazione | 2020-03-03 |
| Valutazione | 3.67/5 Totale 3 Valutazioni |
| Sviluppatore | NeuLion Web |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
} | |