Igloo Australia

Igloo Australia

Gives user the option to either Blur pictures of Iggy Azalea or change them with a picture of Trash can.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "M Umar Seyal",
  "name": "Igloo Australia",
  "manifest_version": 2,
  "version": "1.0.1.6",
  "description": "Gives user the option to either Blur pictures of Iggy Azalea or change them with a picture of Trash can.",
  "background": {
    "scripts": [
      "Scripts/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "jquery.min.js",
        "contentEditor.min.js",
        "underscore-min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "/Icons/icon_full16.png",
    "48": "/Icons/icon_full48.png",
    "128": "/Icons/icon_full128.png"
  },
  "browser_action": {
    "default_title": "Iggy to Trash",
    "default_popup": "popup.html",
    "default_icon": "/Icons/icon_full.png"
  },
  "permissions": [
    "tabs",
    "windows",
    "storage",
    "tts"
  ]
}