Pinboard style

Pinboard style

This is a simple extension to improve the look and feel for Pinboard (http://pinboard.in).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pinboard style",
  "version": "0.0.4",
  "manifest_version": 2,
  "description": "This is a simple extension to improve the look and feel for Pinboard (http://pinboard.in).",
  "homepage_url": "http://martineau.tv",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "contentSettings",
    "https://pinboard.in/*"
  ],
  "content_scripts": [
    {
      "css": [
        "src/inject/inject.css"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "matches": [
        "https://pinboard.in/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "src/inject/*",
    "img/*"
  ]
}