slidepins

slidepins

Create a slideshow in pinterest. More details as video on: https://youtu.be/zTvP43jt3z4

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "slidepins",
  "version": "1.0",
  "description": "Create a slideshow in pinterest",
  "icons": {
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "tabs",
    "https://*.pinimg.com/*",
    "https://*.pinterest.at/*",
    "https://*.pinterest.ca/*",
    "https://*.pinterest.ch/*",
    "https://*.pinterest.cl/*",
    "https://*.pinterest.co.kr/*",
    "https://*.pinterest.com/*",
    "https://*.pinterest.com.au/*",
    "https://*.pinterest.com.mx/*",
    "https://*.pinterest.co.uk/*",
    "https://*.pinterest.de/*",
    "https://*.pinterest.dk/*",
    "https://*.pinterest.es/*",
    "https://*.pinterest.fr/*",
    "https://*.pinterest.ie/*",
    "https://*.pinterest.it/*",
    "https://*.pinterest.jp/*",
    "https://*.pinterest.net/*",
    "https://*.pinterest.nz/*",
    "https://*.pinterest.ph/*",
    "https://*.pinterest.pt/*",
    "https://*.pinterest.ru/*",
    "https://*.pinterest.se/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.pinterest.com/*",
        "*://*.pinterest.ie/*",
        "https://*.pinimg.com/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "48": "icons/icon-48.png"
    },
    "show_matches": [
      "https://pinterest.at/*",
      "https://pinterest.ca/*",
      "https://pinterest.ch/*",
      "https://pinterest.cl/*",
      "https://pinterest.co.kr/*",
      "https://pinterest.com/*",
      "https://pinterest.com.au/*",
      "https://pinterest.com.mx/*",
      "https://pinterest.co.uk/*",
      "https://pinterest.de/*",
      "https://pinterest.dk/*",
      "https://pinterest.es/*",
      "https://pinterest.fr/*",
      "https://pinterest.ie/*",
      "https://pinterest.it/*",
      "https://pinterest.jp/*",
      "https://pinterest.net/*",
      "https://pinterest.nz/*",
      "https://pinterest.ph/*",
      "https://pinterest.pt/*",
      "https://pinterest.ru/*",
      "https://pinterest.se/*",
      "https://*.pinterest.at/*",
      "https://*.pinterest.ca/*",
      "https://*.pinterest.ch/*",
      "https://*.pinterest.cl/*",
      "https://*.pinterest.co.kr/*",
      "https://*.pinterest.com/*",
      "https://*.pinterest.com.au/*",
      "https://*.pinterest.com.mx/*",
      "https://*.pinterest.co.uk/*",
      "https://*.pinterest.de/*",
      "https://*.pinterest.dk/*",
      "https://*.pinterest.es/*",
      "https://*.pinterest.fr/*",
      "https://*.pinterest.ie/*",
      "https://*.pinterest.it/*",
      "https://*.pinterest.jp/*",
      "https://*.pinterest.net/*",
      "https://*.pinterest.nz/*",
      "https://*.pinterest.ph/*",
      "https://*.pinterest.pt/*",
      "https://*.pinterest.ru/*",
      "https://*.pinterest.se/*"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{5293e500-6b59-4956-9b19-3b14e17fb27b}"
    }
  }
}