Bookmarks by frequency

Bookmarks by frequency

Order your bookmarks and folders by the frequency of use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bookmarks by frequency",
  "short_name": "BMR",
  "version": "0.2",
  "default_locale": "en",
  "description": "Order your bookmarks and folders by the frequency of use.",
  "icons": {
    "16": "cbr_16.png",
    "48": "cbr_48.png",
    "128": "cbr_128.png"
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "webNavigation",
    "storage"
  ],
  "background": {
    "scripts": [
      "lib/chrome-extension-async.js",
      "lib/browser-polyfill.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false,
    "chrome_style": true
  }
}