Bookmarks Organizer

Bookmarks Organizer

With the Bookmarks Organizer it's easy to put order in your bookmarks. The Bookmarks Organizer finds no longer working bookmarks, redirects, duplicates and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "version": "4.1.1",
  "description": "__MSG_extension_description__",
  "icons": {
    "48": "images/icon.svg"
  },
  "developer": {
    "name": "Sören Hentzschel",
    "url": "https://www.soeren-hentzschel.at/firefox-webextensions/bookmarks-organizer/?utm_campaign=webext&utm_term=bookmarksorganizer"
  },
  "background": {
    "scripts": [
      "js/core/keepAliveHack.js",
      "js/core/status.js",
      "js/core/background.js"
    ]
  },
  "action": {
    "default_icon": "images/icon.svg",
    "default_title": "__MSG_button_check_bookmarks__"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Shift+F11"
      }
    }
  },
  "omnibox": {
    "keyword": "bookmarks"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "bookmarks",
    "menus",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self';"
  },
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "115.0"
    }
  }
}