Copy Text with URL
Copy current selected text and current URL
¿Qué es Copy Text with URL?
Copy Text with URL es una extensión de Chrome desarrollada por jojonki, y su función principal es "Copy current selected text and current URL".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Copy Text with URL
Descarga archivos de extensión Copy Text with URL en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Copy selected text and current URL jointly!
- Plain copy mode
You can fire the action by either clicking the extension icon or pressing "Ctrl+Shift+C". The format is like below.
selected_text
http://curent_url
- Markdown copy mode
You can fire the action by pressing "Ctrl+Shift+M". The format is like below.
[selected_text](http://current_url)
You can also customize the shortcuts in your extension page. Perhaps, some shortcuts don't work in your environment. Please try the other ones.
- chrome://extensions/shortcuts
This extension is publicly available.
https://github.com/jojonki/copy-text-with-url Información Básica de la Extensión
| Nombre | |
| ID | hbeifjjbjnpnpnffifmojplmlcjakhii |
| URL Oficial | https://chromewebstore.google.com/detail/copy-text-with-url/hbeifjjbjnpnpnffifmojplmlcjakhii |
| Descripción | Copy current selected text and current URL |
| Tamaño del Archivo | 531 KB |
| Cantidad de Instalaciones | 61 |
| Versión Actual | 2.0 |
| Última Actualización | 2022-12-29 |
| Fecha de Publicación | 2019-12-04 |
| Calificación | 4.00/5 Total de 1 Calificaciones |
| Desarrollador | jojonki |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://github.com/jojonki |
| URL de la Página de Ayuda | https://github.com/jojonki/copy-text-with-url |
| Idiomas Soportados | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Copy Text with URL",
"version": "2.0",
"description": "Copy current selected text and current URL",
"permissions": [
"activeTab",
"notifications",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images\/icon_16.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"default_title": "Copy Text with URL"
},
"commands": {
"copy-text-with-url-as-plain": {
"suggested_key": {
"default": "Ctrl+Shift+C",
"mac": "MacCtrl+Shift+C"
},
"description": "Copy text with URL as plain text",
"global": false
},
"copy-text-with-url-as-markdown": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "MacCtrl+Shift+M"
},
"description": "Copy text with URL as markdown style",
"global": false
}
},
"icons": {
"16": "images\/icon_128.png",
"32": "images\/icon_128.png",
"48": "images\/icon_128.png",
"128": "images\/icon_128.png"
},
"manifest_version": 3
} | |