WallabagIt

WallabagIt

View/Edit/Add Wallabag Items

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WallabagIt",
  "description": "View/Edit/Add Wallabag Items",
  "icons": {
    "16": "img/wallabag-icon-48.png",
    "48": "img/wallabag-icon-128.png",
    "128": "img/wallabag-icon-128.png"
  },
  "version": "2.1.1",
  "homepage_url": "https://chrome.google.com/webstore/detail/wallabagit/peehlcgckcnclnjlndmoddifcicdnabm",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/components/settings.js",
      "js/components/auth.js",
      "js/components/api.js",
      "js/listeners.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_name": "WallabagIt",
    "default_icon": "img/wallabag-icon-48.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "wallabag-page": {
      "suggested_key": {
        "default": "Alt+Shift+W",
        "mac": "Ctrl+Shift+W"
      },
      "description": "Save a page to your Wallabag app"
    }
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "commands",
    "contextMenus"
  ]
}