twitter-view-count-remover

Ultra simple browser extension that removes view count from tweets.

twitter-view-count-remover란 무엇입니까?

twitter-view-count-remover은(는) Fernando de la Rosa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ultra simple browser extension that removes view count from tweets."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

twitter-view-count-remover 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simple browser extension that removes view count from tweets.

Easily remove view counts from tweets, no more comparing yourself to the Twitter elite, no more feeling like your tweets are falling into the abyss of the internet.

Try it now!

Source code is available at:
https://github.com/jfdelarosa/twitter-view-count-remover

CHANGELOG
v1.3 - Fixed a bug that does not allow to open the more options menu in own tweets
v1.2 - Added the possibility to show or hide the counter via a toggle
v1.1 - Added support for mobile.twitter.com domain
v1.0 - Initial release                    

확장 프로그램 기본 정보

이름 twitter-view-count-remover twitter-view-count-remover
ID kacedphpmelngnhgodfbnemedkbbiajj
공식 URL https://chromewebstore.google.com/detail/twitter-view-count-remove/kacedphpmelngnhgodfbnemedkbbiajj
설명 Ultra simple browser extension that removes view count from tweets.
파일 크기 11.94 KB
설치 횟수 1,485
현재 버전 1.3.0
최근 업데이트 2023-01-05
출시 날짜 2022-12-24
평점 4.70/5 총 23 개의 평점
개발자 Fernando de la Rosa
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/jfdelarosa
도움말 페이지 URL https://twitter.com/jfdelarosa
개인정보 보호 정책 페이지 URL https://www.lunanotes.io/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "jfdelarosa",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Ultra simple browser extension that removes view count from tweets.",
    "manifest_version": 3,
    "name": "twitter-view-count-remover",
    "permissions": [
        "storage",
        "tabs"
    ],
    "version": "1.3.0",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png"
        },
        "default_popup": "popup.html"
    }
}