Examine source code of Bookafly

Inspect and view changes in Bookafly 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": "2.1.22",
  "name": "__MSG_extName__",
  "icons": {
    "32": "assets/icons/32.png",
    "64": "assets/icons/64.png",
    "128": "assets/icons/128.png"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "view/popup.html"
  },
  "description": "__MSG_extDescription__",
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "webNavigation",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "lib/jquery_3.5.1/jquery_3_5_1.js",
        "lib/moment/moment.js",
        "baseConfig.js",
        "scripts/customLib/localizedText.js",
        "scripts/customLib/urlValidator.js",
        "scripts/customLib/dateOperation.js",
        "scripts/customLib/levenshtein.js",
        "scripts/customLib/starRating.js",
        "scripts/customLib/deviceDetection.js",
        "scripts/customLib/browserDetection.js",
        "scripts/content/content_config.js",
        "scripts/content/custom_popup.js",
        "scripts/content/custom_popup2.js",
        "scripts/content/content_traystate.js",
        "scripts/customLib/draggableDiv.js",
        "scripts/content/content_booking.js",
        "scripts/content/content_popup_controller.js",
        "scripts/content/content_channel.js",
        "scripts/content/helper.js",
        "scripts/content/custom_popup_mobile2.js",
        "scripts/content/content_script.js",
        "scripts/content/content_dynamic_search_list.js",
        "scripts/content/content_dynamic_extractor.js",
        "scripts/customLib/localSessionData.js",
        "scripts/content/content_activitypopup.js",
        "scripts/content/content_backend_popup.js",
        "scripts/content/debuggingMode.js"
      ],
      "css": [
        "styles/style_config.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "lib/*",
        "styles/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}