Clipboard History
Extension to save history of copied text in browser
O que é Clipboard History?
Clipboard History é uma extensão do Chrome desenvolvida por Saif As, e sua principal característica é "Extension to save history of copied text in browser".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Clipboard History
Baixe arquivos de extensão Clipboard History no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
it saves each item copied on the clipboard allowing access to any of those items at any time later. Features: ● Hovering on one item will show all the text content in the tooltip ● Clicking on one item will copy the text to clipboard ● Searching for text will search all the items for matching text ● Clicking on the X button near each item will delete the item from the list ● Clicking on clear saved text will clear all the saved text Isn't working as expected? Please send me mail to: [email protected]
Informações Básicas da Extensão
Nome | Clipboard History |
ID | mhokbaagmjlbflncohdhinppihlojpco |
URL Oficial | https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco |
Descrição | Extension to save history of copied text in browser |
Tamanho do Arquivo | 177 KB |
Contagem de Instalações | 1,677 |
Versão Atual | 1.5 |
Última Atualização | 2021-11-01 |
Data de Publicação | 2020-07-15 |
Classificação | 2.33/5 Total de 3 Avaliações |
Desenvolvedor | Saif As |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Clipboard History", "version": "1.5", "description": "Extension to save history of copied text in browser", "permissions": [ "storage" ], "icons": { "128": "icons\/icon128.png", "256": "icons\/icon256.png", "512": "icons\/icon512.png" }, "action": { "default_icon": "icons\/icon512.png", "default_popup": "src\/browser_actions\/popup.html", "default_title": "Clipboard History" }, "background": { "service_worker": "src\/bg\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/browser_actions\/content.js" ] } ] } |