Wribbn for Desktop

Wribbn for Desktop

Make lists. Do more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "2.6.6",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/logo/16.png",
    "32": "images/logo/32.png",
    "48": "images/logo/48.png",
    "64": "images/logo/64.png",
    "96": "images/logo/96.png",
    "128": "images/logo/128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/button/16.png",
      "19": "images/button/19.png",
      "32": "images/button/32.png",
      "38": "images/button/38.png",
      "64": "images/button/64.png"
    },
    "default_title": "__MSG_browserActionTitle__"
  },
  "options_ui": {
    "page": "pages/options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/content.css"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/parser.js",
        "scripts/content.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "<all_urls>",
    "notifications",
    "activeTab",
    "storage"
  ],
  "author": "Wribbn, Inc.",
  "homepage_url": "https://www.wribbn.com"
}