EzPinterest

EzPinterest

Make image on pinterest easy to save

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EzPinterest",
  "description": " Make image on pinterest easy to save ",
  "version": "1.1",
  "permissions": [
    "tabs",
    "https://www.pinterest.com/*",
    "https://i.pinimg.com/originals/"
  ],
  "web_accessible_resources": [
    "icon-128.png"
  ],
  "page_action": {
    "css": [
      "css/bootstrap.min.css"
    ],
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pinterest.com/*"
      ],
      "css": [
        "css/bootstrap.min.css"
      ],
      "js": [
        "content.js",
        "jquery-3.3.1.min.js",
        "js/bootstrap.min.js",
        "myscript.js"
      ]
    }
  ]
}