QRtube
This extension generates QR codes based on content of the page
O que é QRtube?
QRtube é uma extensão do Chrome desenvolvida por Leo Sun, e sua principal característica é "This extension generates QR codes based on content of the page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão QRtube
Baixe arquivos de extensão QRtube 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
Easy and fast tool to generate QR codes! No instructions needed! 1.0.1: - fixed encoding issues on unicode characters Features Pop-up window: - click on the popup icon for QR code for the current tab - type anything into the text box and get QR code for your text - left click on the QR code to download a copy Right Click Menu: - right click on anything (selection, links, images) on the page and get a floating QR code - right click and save the QR code just like any other image on the page - left click and the floating QR code will go away
Informações Básicas da Extensão
Nome | QRtube |
ID | phichmdafaefogijmmjpnljbofidimlm |
URL Oficial | https://chromewebstore.google.com/detail/qrtube/phichmdafaefogijmmjpnljbofidimlm |
Descrição | This extension generates QR codes based on content of the page |
Tamanho do Arquivo | 102 KB |
Contagem de Instalações | 17 |
Versão Atual | 1.0.1 |
Última Atualização | 2014-07-24 |
Data de Publicação | 2014-07-24 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Leo Sun |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "QRtube", "description": "This extension generates QR codes based on content of the page", "version": "1.0.1", "permissions": [ "tabs", "contextMenus", "downloads", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_popup": "qrtube.html" }, "content_scripts": [ { "js": [ "jquery.min.js", "qrcode.min.js", "qrtube.js", "jquery.qrcode.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |