Hacker Vision

Hacker Vision

Night-mode for the internet. Apply a highly-visible dark theme to all webpages. Helps with eye strain and dyslexia.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "hackerVision-19.png",
    "default_popup": "popup.html",
    "default_title": "Hacker Vision (Shift+F12 or CMD+Shift+F12)"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "hackerVision.css"
      ],
      "js": [
        "nowhiteflash.js",
        "scripts/jquery-2.1.1.min.js",
        "hackerVision.js",
        "sweepDOM.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://connect.facebook.net; object-src 'self'",
  "description": "Night-mode for the internet. Apply a highly-visible dark theme to all webpages. Helps with eye strain and dyslexia.",
  "icons": {
    "16": "hackerVision-16.png",
    "48": "hackerVision-48.png",
    "128": "hackerVision-128.png"
  },
  "options_ui": {
    "page": "firstLaunch.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "options_page": "firstLaunch.html",
  "web_accessible_resources": [
    "firstLaunch.html"
  ],
  "name": "Hacker Vision",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage"
  ],
  "version": "2.70",
  "minimum_chrome_version": "26",
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDi+ckVeUlNTqG0WVpUlZQZpAh/FjT/5/rA9U2aI8HgE4cqHDwPoyUGUF4HMq4GUMRoJxV/r7xNtjF6gNoZe7kmcU1Z0Q2DtwSUMHNjDRxTD88oEnSYaqMw6003G+aIFWdHFnEFO1BuIsNm3b+zlPFuSSSSHyw8SFBiCRePVWciswIDAQAB",
  "manifest_version": 2
}