Post To Tumblr

Post To Tumblr

Enables right-click posting of content to Tumblr

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Post To Tumblr",
  "short_name": "PTT",
  "manifest_version": 2,
  "description": "Enables right-click posting of content to Tumblr",
  "version": "6.71",
  "permissions": [
    "contextMenus",
    "notifications",
    "http://*/*",
    "https://*/*",
    "file://*/*",
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "optional_permissions": [
    "clipboardRead"
  ],
  "background": {
    "page": "html/background.html"
  },
  "options_page": "html/options.html",
  "minimum_chrome_version": "50",
  "browser_action": {
    "default_icon": "images/icon48.png",
    "default_title": "Post To Tumblr"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "images/*",
    "html/*.html"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com/analytics.js https://ssl.google-analytics.com https://www.google-analytics.com https://ptt-server.herokuapp.com https://connect.facebook.net https://npmcdn.com https://cdnjs.cloudflare.com https://api.sandbox.braintreegateway.com https://api.braintreegateway.com https://client-analytics.sandbox.braintreegateway.com https://client-analytics.braintreegateway.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "js/mouseWatcher-bundle.js"
      ]
    }
  ]
}