GetAll! 新浪微博照片批量获取工具

GetAll! 新浪微博照片批量获取工具

批量获取新浪微博相册中的照片,并提供人脸照智能筛选、图片批量打包下载功能

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.0.7",
  "author": "Zhuohui Jeffrey Chen",
  "default_locale": "zh_CN",
  "page_action": {
    "default_icon": {
      "19": "img/LOGO_19x19.png",
      "38": "img/LOGO_38x38.png"
    },
    "default_title": "__MSG_page_action_title__",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "img/LOGO_48x48.png",
    "128": "img/LOGO_128x128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "webNavigation",
    "declarativeContent",
    "http://photo.weibo.com/*",
    "http://*.sinaimg.cn/large/*",
    "http://apicn.faceplusplus.com/*"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/jquery-1.11.0.min.js",
      "js/eventPage.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.weibo.com/*",
        "*://photo.weibo.com/*"
      ],
      "js": [
        "js/jquery-1.11.0.min.js",
        "js/content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://apis.google.com/ https://connect.facebook.net/; object-src 'self'"
}