QR Code tool
The QR code tool generates a QR code based on the URL of the current page by default, and can also customize the content.
Cos'è QR Code tool?
QR Code tool è un'estensione di Chrome sviluppata da https://tool-box.vip, e la sua funzione principale è "The QR code tool generates a QR code based on the URL of the current page by default, and can also customize the content.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione QR Code tool
Scarica i file di estensione QR Code tool 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
A useful Chrome QR code extension: function list: 1. QR code generation, the default is to generate the address of the current active page 2. QR code download 3. QR code content reading, support local file upload and BASE64 content reading 4. Support the right-click QR code image analysis of the current page - Completely offline, no need to worry about privacy security leakage. - Support one-click download After installing the extension, click the QR code icon in the upper right corner to generate the QR code of the current page, or customize the content. For more tools, see https://www.g-json.cn
Informazioni di Base sull'Estensione
Nome | QR Code tool |
ID | lhlalkpebapgmcolecdeeikopddfkaoi |
URL Ufficiale | https://chromewebstore.google.com/detail/qr-code-tool/lhlalkpebapgmcolecdeeikopddfkaoi |
Descrizione | The QR code tool generates a QR code based on the URL of the current page by default, and can also customize the content. |
Dimensione del File | 229 KB |
Conteggio Installazioni | 166 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2023-09-28 |
Data di Pubblicazione | 2020-12-09 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://tool-box.vip |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.tool-box.vip/tools/Qrcode |
Lingue Supportate | de,en,fr,ca,ru,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "manifest_version": 3, "version": "1.0.1", "default_locale": "en", "author": "Gene Yang", "description": "__MSG_description__", "homepage_url": "https:\/\/www.g-json.cn", "permissions": [ "tabs", "contextMenus" ], "icons": { "16": "icons\/i_16.png", "48": "icons\/i_48.png", "128": "icons\/i_128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "contentScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "action": { "default_title": "__MSG_name__", "default_popup": "index.html", "default_icon": { "16": "icons\/i_16.png", "48": "icons\/i_48.png", "128": "icons\/i_128.png" } } } |