Clipboard Inserter
A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
O que é Clipboard Inserter?
Clipboard Inserter é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Clipboard Inserter
Baixe arquivos de extensão Clipboard Inserter 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
This addon, when turned on in a tab monitors your system clipboard and inserts its contents into the page whenever they change. You can customize tag name of the wrapping element, and chose the parent for inserted elements using a css selector in app options. In order for this extension to work on local files (the file:// protocol) you need to change the "Allow access to file URLs" setting in the extension details. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
Informações Básicas da Extensão
Nome | Clipboard Inserter |
ID | deahejllghicakhplliloeheabddjajm |
URL Oficial | https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm |
Descrição | A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY |
Tamanho do Arquivo | 10.28 KB |
Contagem de Instalações | 10,000 |
Versão Atual | 0.3.2 |
Última Atualização | 2018-12-06 |
Data de Publicação | 2018-12-06 |
Classificação | 4.50/5 Total de 12 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kmltml/clipboard-inserter |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clipboard Inserter", "version": "0.3.2", "description": "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY", "icons": [], "applications": { "gecko": { "id": "@clipboard-inserter" } }, "permissions": [ "activeTab", "clipboardRead", "storage", "file:\/\/*\/*" ], "browser_action": { "browser_style": true, "default_icon": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "64": "icon\/icon64.png" }, "default_title": "Toggle clipboard inserter" }, "background": { "page": "bg\/index.html" }, "options_ui": { "page": "options.html" } } |