Examine source code of Better Bookmarker

Inspect and view changes in Better Bookmarker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.7",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "short_name": "bookmarker",
  "default_locale": "en",
  "minimum_chrome_version": "117",
  "action": {
    "default_icon": {
      "16": "icons/icon16-white.png",
      "32": "icons/icon32-white.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "pages/popup/popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+B"
      }
    },
    "addPageToBookmarksBar": {
      "description": "__MSG_addPageToDefaultFolder__"
    },
    "removeCurrentPageBookmark": {
      "description": "__MSG_unBookmarkCurrentPage__"
    },
    "toggleCurrentPageBookmark": {
      "description": "__MSG_toggleCurrentPageBookmark__"
    }
  },
  "icons": {
    "16": "icons/icon16-yellow.png",
    "32": "icons/icon32-yellow.png",
    "48": "icons/icon48-yellow.png",
    "128": "icons/icon128-yellow.png"
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "declarativeContent",
    "storage"
  ],
  "options_ui": {
    "page": "pages/options/options.html"
  },
  "background": {
    "service_worker": "sw.js",
    "type": "module"
  }
}