Examine source code of Huruf

Inspect and view changes in Huruf source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Huruf",
  "short_name": "Huruf",
  "description": "Allows you to set the font and size of Arabic text, making it easy to read.",
  "version": "3.1",
  "minimum_chrome_version": "38",
  "permissions": [
    "storage"
  ],
  "options_page": "popup.html",
  "browser_action": {
    "default_icon": "assets/huruf.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/huruf.png",
    "128": "assets/huruf.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "main.js",
    "fonts/*"
  ]
}