Examine source code of favacarte - bookmarks manager for search tree view

Inspect and view changes in favacarte - bookmarks manager for search tree view 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
{
  "description": "__MSG_description__",
  "manifest_version": 2,
  "name": "FavaCarte",
  "version": "0.2.3",
  "icons": {
    "48": "data/logo_icon_48x48.png"
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "tabs",
    "menus",
    "<all_urls>",
    "webRequest",
    "storage",
    "unlimitedStorage",
    "browserSettings",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_icon": "data/logo_icon_225x225.png",
    "default_title": "FavaCarte",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "scripts/class/Groups.js",
      "scripts/class/Bookmarks.js",
      "scripts/class/BookmarkTreeNode.js",
      "scripts/class/Tools.js",
      "scripts/class/ConfigDefaut.js",
      "scripts/privilegied/daemon.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/class/Contextmenu.js",
        "scripts/class/Frontend.js",
        "scripts/class/Groups.js",
        "scripts/class/Bookmarks.js",
        "scripts/class/BookmarkTreeNode.js",
        "scripts/class/Tools.js",
        "scripts/content/fav_ui.js"
      ],
      "run_at": "document_start",
      "match_about_blank": false
    }
  ],
  "commands": {
    "fava_7": {
      "suggested_key": {
        "default": "Shift+Ctrl+7"
      },
      "description": "__MSG_commands_toggle_description__"
    }
  },
  "applications": {
    "gecko": {
      "id": "favacarte@example.com"
    }
  },
  "web_accessible_resources": [
    "data/*",
    "css/fav_ui.css"
  ],
  "default_locale": "fr",
  "options_ui": {
    "page": "popup/options.html"
  }
}