Paste List
Consecutively paste things
¿Qué es Paste List?
Paste List es una extensión de Chrome desarrollada por https://dilanxd.com, y su función principal es "Consecutively paste things".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Paste List
Descarga archivos de extensión Paste List 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
Take each "copy" out of "copy paste copy paste copy paste copy paste". Paste List is a browser extension for Google Chrome that simplifies repeated pasting. Create lists of text, then head over to a webpage and activate one. As you paste an item somewhere, the next one will automatically be copied to your clipboard. - Easily manage multiple lists of text (add items, move items, and delete items as needed) - Activate a list using the extension popup (pin the extension to make it easy to access) - Press 'Start' on the overlay that appears on the page and watch how the overlay updates with your clipboard as you paste - 'Skip' any list item when pasting or 'Stop' it completely (it also stops if you make it to the end of the list or if you activate another list) - Use optional keyboard shortcuts when editing lists ('ctl/cmd + enter' to add a new item, 'ctl/cmd + s' to save the list)
Información Básica de la Extensión
Nombre | Paste List |
ID | nolfbfhaicjldjodgafpaheehkolchdf |
URL Oficial | https://chromewebstore.google.com/detail/paste-list/nolfbfhaicjldjodgafpaheehkolchdf |
Descripción | Consecutively paste things |
Tamaño del Archivo | 173 KB |
Cantidad de Instalaciones | 80 |
Versión Actual | 0.2.0 |
Última Actualización | 2022-09-03 |
Fecha de Publicación | 2022-08-24 |
Desarrollador | https://dilanxd.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.dilanxd.com |
URL de la Página de Política de Privacidad | https://www.dilanxd.com/privacy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paste List", "description": "Consecutively paste things", "version": "0.2.0", "author": "Dilan Nair", "manifest_version": 3, "icons": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "128": "\/icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "webcomponents-bundle.js", "element.js", "content.js" ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "128": "\/icons\/icon128.png" } } } |