Pinhoard Beta - never search same thing again

Pinhoard Beta - never search same thing again

Automatically save visited Google search results and whatever you copy on search-related page for later quick access.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pinhoard Beta - never search same thing again",
  "short_name": "Pinhoard Beta",
  "version": "0.1.0",
  "description": "Automatically save visited Google search results and whatever you copy on search-related page for later quick access.",
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_title": "Pinhoard",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistence": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "http://*.google.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "queryInputRuntime.js"
  ],
  "permissions": [
    "webNavigation",
    "contextMenus",
    "tabs",
    "storage"
  ]
}