Twian Scanner

Twian Scanner

Twain Scanner. Extension for scan paper documents from scanner device and send base64 on page web application. 1) Install…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twian Scanner",
  "version": "1.0.10",
  "offline_enabled": true,
  "icons": {
    "128": "/img/icon128.png"
  },
  "browser_action": {
    "default_icon": "/img/icon128.png",
    "default_popup": "index.html",
    "default_title": "Scan now"
  },
  "background": {
    "scripts": [
      "/js/background/messageCollector.js",
      "/js/background/previewControllerPopup.js",
      "/js/background/dataController.js",
      "/js/background/portController.js",
      "/js/background/backgroundCore.js"
    ]
  },
  "permissions": [
    "background",
    "nativeMessaging",
    "unlimitedStorage",
    "downloads",
    "activeTab",
    "webNavigation",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/content/css/popup.css"
      ],
      "js": [
        "/content/js/jquery-3.2.1.min.js",
        "/content/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "preview.html",
    "popup_container.html",
    "popup_frame.html",
    "/content/css/bootstrap.min.css",
    "/content/js/jquery-3.2.1.min.js",
    "/content/js/bootstrap.min.js"
  ]
}