File: manifest.json

Recommend this page to a friend!
  Classes of Andras Toth   WebCodeCamJS Chrome Extension   manifest.json   Download  
File: manifest.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WebCodeCamJS Chrome Extension
Scan qrcode with Webcam as a Chrome extension
Author: By
Last change: update
Date: 2 years ago
Size: 831 bytes
 

Contents

Class file image Download
{ "manifest_version": 2, "author": "Tóth András", "name": "WebCodeCamJS Extension", "short_name": "WCCJSEXT", "description": "This extension will able to decode qr and barcodes.", "version": "1.6.0", "options_page": "options.html", "browser_action": { "default_icon": "css/images/icon48-gray.png", "default_popup": "popup.html" }, "icons": { "16": "css/images/icon16.png", "48": "css/images/icon48.png", "128": "css/images/icon128.png" }, "content_scripts": [{ "matches": ["http://*/*", "https://*/*"], "js": ["js/content.js"], "run_at": "document_end" }], "background": { "page": "background.html", "script": "js/DecoderWorker.js" }, "permissions": ["tabs", "<all_urls>", "storage"] }