TAS (Twitter Anonymous Screenshot)

TAS (Twitter Anonymous Screenshot)

트위터에서 타임라인 페이지에 나타나는 프로필, 미디어 등의 개인정보를 숨김 처리하고 편리하게 스크린샷을 찍을 수 있는 확장 프로그램입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TAS (Twitter Anonymous Screenshot)",
  "description": "트위터에서 타임라인 페이지에 나타나는 프로필, 미디어 등의 개인정보를 숨김 처리하고 편리하게 스크린샷을 찍을 수 있는 확장 프로그램입니다.",
  "version": "1.3.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*",
        "https://discord.com/channels/*",
        "https://bsky.app/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "/images/bird.png"
  },
  "icons": {
    "16": "/images/bird.png",
    "32": "/images/bird.png",
    "48": "/images/bird.png",
    "128": "/images/bird.png"
  }
}