Paste List
Consecutively paste things
Cos'è Paste List?
Paste List è un'estensione di Chrome sviluppata da https://dilanxd.com, e la sua funzione principale è "Consecutively paste things".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Paste List
Scarica i file di estensione Paste List 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
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)
Informazioni di Base sull'Estensione
Nome | Paste List |
ID | nolfbfhaicjldjodgafpaheehkolchdf |
URL Ufficiale | https://chromewebstore.google.com/detail/paste-list/nolfbfhaicjldjodgafpaheehkolchdf |
Descrizione | Consecutively paste things |
Dimensione del File | 173 KB |
Conteggio Installazioni | 80 |
Versione Corrente | 0.2.0 |
Ultimo Aggiornamento | 2022-09-03 |
Data di Pubblicazione | 2022-08-24 |
Sviluppatore | https://dilanxd.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.dilanxd.com |
URL della Pagina della Politica sulla Privacy | https://www.dilanxd.com/privacy |
Lingue Supportate | 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" } } } |