Tidy Bookmarks

Tidy Bookmarks

Tidy Bookmarks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tidy Bookmarks",
  "version": "2.5",
  "description": "Tidy Bookmarks",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "omnibox": {
    "keyword": "*"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon19.png",
    "default_title": "Tidy Bookmarks",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "icon19on.png",
    "icon19off.png"
  ],
  "commands": {
    "myCommandADDBOOKMARK": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "Send add Bookmark command"
    },
    "myCommandADDBOOKMARKtabs": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Send add tabs command"
    }
  },
  "minimum_chrome_version": "19",
  "permissions": [
    "bookmarks",
    "chrome://favicon/*",
    "tabs",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ]
}