Quick Cards

Quick Cards

Quick Cards is a replacement of new tab and provides simple way to store To Do items or bookmarks in alternative storage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Martin Holan",
  "manifest_version": 2,
  "name": "Quick Cards",
  "short_name": "Quick Cards",
  "version": "0.9.3",
  "description": "Quick Cards is a replacement of new tab and provides simple way to store To Do items or bookmarks in alternative storage",
  "web_accessible_resources": [
    "scripts/*",
    "pages/*",
    "assets/*"
  ],
  "icons": {
    "32": "assets/ico32.png",
    "64": "assets/ico64.png",
    "128": "assets/ico128.png"
  },
  "browser_action": {
    "default_icon": {
      "32": "assets/ico32.png",
      "64": "assets/ico64.png",
      "128": "assets/ico128.png"
    },
    "default_title": "Quick Cards",
    "default_popup": "pages/action.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "chrome_url_overrides": {
    "newtab": "pages/main.html"
  }
}