Pearltrees Extension

Pearltrees Extension

Pearltrees lets you organize all your interests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pearltrees Extension",
  "description": "__MSG_extDescription__",
  "version": "8.1.2",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "image/icon16.png",
    "48": "image/icon48.png",
    "128": "image/icon128.png"
  },
  "permissions": [
    "*://www.pearltrees.com/*",
    "tabs",
    "background",
    "contextMenus",
    "storage"
  ],
  "browser_action": {
    "default_icon": "image/chromeButton/in.png",
    "default_title": "Pearltrees",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "optional_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.pearltrees.com/*"
      ],
      "js": [
        "script/chromeContent.js"
      ]
    }
  ]
}