Examine source code of Life is Tech ! Facebook Presenter

Inspect and view changes in Life is Tech ! Facebook Presenter 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,
  "name": "Life is Tech ! Facebook Presenter",
  "short_name": "LiT! FB Presenter",
  "version": "1.1.0",
  "description": "Life is Tech ! の Facebookグループの投稿を自動的に最新順に並べ替え、投稿を大きく表示させる拡張機能です。",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}