Aon Adblock Mini

Aon Adblock Mini

It blocks unwanted advertisements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0",
  "name": "__MSG_application_title__",
  "short_name": "__MSG_application_short_name__",
  "description": "__MSG_application_description__",
  "default_locale": "en",
  "homepage_url": "http://aonbrowser.com",
  "minimum_chrome_version": "30.0.1599",
  "offline_enabled": false,
  "author": "Tarık Sucu",
  "icons": {
    "16": "assets/img/16_icon.png",
    "32": "assets/img/32_icon.png",
    "48": "assets/img/48_icon.png",
    "64": "assets/img/64_icon.png",
    "128": "assets/img/128_icon.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/img/19_action.png",
      "38": "assets/img/38_action.png"
    },
    "default_title": " "
  },
  "background": {
    "scripts": [
      "assets/js/bg.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "assets/js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "assets/img/*.png",
    "assets/js/content.js"
  ]
}