Pinterest画像ダウンローダー

Pinterest画像ダウンローダー

Pinterestのオリジナルサイズの画像を手軽にダウンロードすることができます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.1.0",
  "name": "Pinterest画像ダウンローダー",
  "description": "Pinterestのオリジナルサイズの画像を手軽にダウンロードすることができます。",
  "icons": {
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.pinterest.jp/*",
        "https://www.pinterest.jp/*"
      ],
      "js": [
        "/static/js/content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon_32.png",
    "default_title": "Pinterest画像ダウンローダー",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "/static/js/background_script.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}