Oldskoolizer

Oldskoolizer

Browsing... 8 bits at a time. Transform web pages into a wanabee-8 bits version.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Oldskoolizer",
  "version": "0.1.2",
  "description": "Browsing... 8 bits at a time.\nTransform web pages into a wanabee-8 bits version.",
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "nearestColor.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icons/oldskoolizer-16.png",
    "32": "icons/oldskoolizer-32.png",
    "48": "icons/oldskoolizer-48.png",
    "128": "icons/oldskoolizer-128.png"
  },
  "web_accessible_resources": [
    "*.ttf",
    "*.png"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ]
}