Printerest

Printerest

Print Pinterest pins Properly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Printerest",
  "version": "0.4.7",
  "description": "Print Pinterest pins Properly",
  "icons": {
    "64": "img/logo_64.png"
  },
  "browser_action": {
    "default_icon": {
      "38": "img/logo_38.png"
    },
    "default_title": "Printerest",
    "default_popup": "html/pop.html"
  },
  "author": "Tim Diacon - Normally",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles/print.css",
        "styles/screen.css"
      ],
      "js": [
        "scripts/vendor/jquery-2.2.0.min.js",
        "scripts/app.js",
        "scripts/options.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png",
    "scripts/*.js",
    "styles/*.css"
  ],
  "background": {
    "scripts": [
      "scripts/eventPage.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "options_page": "html/options_old.html",
  "permissions": [
    "storage"
  ]
}