Twitter Anonymizer

One-click anonymizer of tweets before sharing a screenshot.

Twitter Anonymizer란 무엇입니까?

Twitter Anonymizer은(는) Marc Brillault에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "One-click anonymizer of tweets before sharing a screenshot."입니다.

확장 프로그램 스크린샷

screenshot

Twitter Anonymizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Want to share a content from Twitter, but you don't want to risk the harassment of the user ?
With Twitter Anonymizer, the solution is just a click away !

Right click anywhere on a twitter page, select "Toggle anonymization", and see that every user name and icon in the thread is now unidentifiable. You can now take a screenshot of the page.

Repeat the process to revert the page to its original state.                    

확장 프로그램 기본 정보

이름 Twitter Anonymizer Twitter Anonymizer
ID dliaabmcomhfhpibgbljmcjfgfkjbalf
공식 URL https://chromewebstore.google.com/detail/twitter-anonymizer/dliaabmcomhfhpibgbljmcjfgfkjbalf
설명 One-click anonymizer of tweets before sharing a screenshot.
파일 크기 33.64 KB
설치 횟수 40
현재 버전 1.3.1
최근 업데이트 2023-07-20
출시 날짜 2022-07-07
개발자 Marc Brillault
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/MarcBrillault/twitter-anonymizer
도움말 페이지 URL https://github.com/MarcBrillault/twitter-anonymizer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Anonymizer",
    "description": "One-click anonymizer of tweets before sharing a screenshot.",
    "version": "1.3.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png",
        "32": "icon-32.png"
    },
    "permissions": [
        "contextMenus",
        "scripting"
    ]
}