Examine source code of Togetter Clip!

Inspect and view changes in Togetter Clip! 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",
  "name": "__MSG_appName__",
  "background": {
    "service_worker": "bg-loader.js"
  },
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.27",
  "manifest_version": 3,
  "default_locale": "ja",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "https://*.x.com/*",
        "https://*.togetter.com/v2/*",
        "https://*.posfie.com/v2/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "content.css"
      ],
      "match_about_blank": true
    }
  ],
  "action": {
    "default_icon": {
      "19": "images/browser-action-icon-19.png",
      "38": "images/browser-action-icon-38.png"
    },
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://api.togetter.com/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ]
}