Pinterest Group Boards Finder

This extension will help you find pinterest group boards
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pinterest Group Boards Finder",
  "author": "smmchum.com",
  "description": "This extension will help you find pinterest group boards",
  "version": "1.0.4",
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "logo-16.png",
    "32": "logo-32.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.pinterest.*/*",
        "*://*.pinterest.*.*/*",
        "*://pinterest.*/*",
        "*://pinterest.*.*/*"
      ],
      "js": [
        "inject.js"
      ],
      "css": [
        "inject.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  }
}