QR Code
A light weight QR Code
Wat is QR Code?
QR Code is een Chrome-extensie ontwikkeld door Vimo, en de belangrijkste functie is "A light weight QR Code".
Extensie Screenshots
Download het CRX-bestand van de extensie QR Code
Download QR Code-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
To make the url or input some string into QR code, And you can download it. It's simple and easy.
Basisinformatie over de Extensie
Naam | QR Code |
ID | pbaiffcponpeabjpjambkgpplklgjkcj |
Officiële URL | https://chromewebstore.google.com/detail/qr-code/pbaiffcponpeabjpjambkgpplklgjkcj |
Beschrijving | A light weight QR Code |
Bestandsgrootte | 11.49 KB |
Aantal Installaties | 39 |
Huidige Versie | 1.2.2 |
Laatst Bijgewerkt | 2019-06-20 |
Publicatiedatum | 2019-06-19 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Vimo |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "QR Code", "version": "1.2.2", "manifest_version": 2, "description": "A light weight QR Code", "icons": { "48": "qrcode.png" }, "browser_action": { "default_icon": { "48": "qrcode.png" }, "default_popup": "popup.html", "default_title": "Create a QR Code for url" }, "content_scripts": [ { "all_frames": true, "match_about_blank": true, "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "qrCode.js" ] } ], "permissions": [ "tabs" ] } |