Huruf

Huruf

Allows you to set the font and size of Arabic text, making it easy to read.

Merlin
Additional files are visible only to premium users

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/*"
  ]
}