ScribeFire

ScribeFire

An easy-to-use blog editor lets you post to all of your blogs.

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__",
  "version": "4.3.5",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "skin/icon-16.png",
    "48": "skin/icon-48.png",
    "128": "skin/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistant": false
  },
  "browser_action": {
    "default_icon": "skin/icon.png"
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "http://www.*",
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/",
        "https://*/"
      ],
      "js": [
        "content_helper.js"
      ]
    },
    {
      "matches": [
        "http://www.scribefire.com/token.php*"
      ],
      "js": [
        "token_listener.js"
      ]
    },
    {
      "matches": [
        "http://www.scribefire.com/oauth2*"
      ],
      "js": [
        "wordpress_token_listener.js"
      ]
    },
    {
      "matches": [
        "https://accounts.google.com/o/oauth2/approval*"
      ],
      "js": [
        "google_token_listener.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://*.youtube.com; object-src 'self'",
  "short_name": "scribefire",
  "default_locale": "en_US",
  "options_page": "options.html"
}