Weibo Photo Eraser

Weibo Photo Eraser

An Extension to erase photos in weibo album waterfall.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Weibo Photo Eraser",
  "version": "1.0.4",
  "content_scripts": [
    {
      "matches": [
        "https://weibo.com/*",
        "http://weibo.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/toastr.min.js",
        "js/delete.js"
      ],
      "css": [
        "css/toastr.min.css",
        "css/delete.css"
      ]
    }
  ],
  "description": "An Extension to erase photos in weibo album waterfall.",
  "permissions": [
    "declarativeContent"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/weibo16.png",
      "32": "images/weibo32.png",
      "48": "images/weibo48.png",
      "128": "images/weibo128.png"
    }
  },
  "icons": {
    "16": "images/weibo16.png",
    "32": "images/weibo32.png",
    "48": "images/weibo48.png",
    "128": "images/weibo128.png"
  },
  "manifest_version": 2
}