Wakelet - Save, curate and share

Wakelet - Save, curate and share

Save, curate and share the things you love

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.2.0",
  "name": "Wakelet - Save, curate and share",
  "manifest_version": 2,
  "description": "Save, curate and share the things you love",
  "browser_action": {
    "default_title": "Wakelet",
    "default_icon": {
      "19": "img/icon.png",
      "38": "img/icon.png"
    }
  },
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "inject.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "css/wakelet.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "https://*/*",
    "http://*/*"
  ]
}