Weitweet

Weitweet

Post Fanfou, Weibo and Twitter in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "homepage_url": "https://github.com/crimx/ext-weitweet",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "description": "__MSG_extension_description__",
  "default_locale": "zh_CN",
  "version": "1.3.2",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/browser-polyfill.min.js",
        "js/extractor_twitter.js"
      ],
      "matches": [
        "*://api.twitter.com/oauth/authorize*"
      ]
    },
    {
      "js": [
        "js/browser-polyfill.min.js",
        "js/extractor_fanfou.js"
      ],
      "matches": [
        "*://fanfou.com/oauth/authorize*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "24": "img/icon24.png",
      "32": "img/icon32.png"
    }
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "identity"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "js/browser-polyfill.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "minimum_chrome_version": "56"
}