Remove Vanity Metrics

Hides the number of favorites, likes, and followers from your feed so you can focus on the content.

Remove Vanity Metrics란 무엇입니까?

Remove Vanity Metrics은(는) maaslalani에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides the number of favorites, likes, and followers from your feed so you can focus on the content."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Remove Vanity Metrics 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Download this chrome extension to experience raw social media. It hides the number of favorites, likes, and followers from your feed so you can focus on the content.

"we should be able to participate in social media without having to show how many followers or likes we have. Just like how we can turn off the comments we should be able to turn off the display of followers. This has an intense negative impact on our self worth."
— Kanye West                    

확장 프로그램 기본 정보

이름 Remove Vanity Metrics Remove Vanity Metrics
ID oghebdfgdiopdhhobajijnjepjejckdj
공식 URL https://chrome.google.com/webstore/detail/remove-vanity-metrics/oghebdfgdiopdhhobajijnjepjejckdj
설명 Hides the number of favorites, likes, and followers from your feed so you can focus on the content.
파일 크기 21.86 KB
설치 횟수 69
현재 버전 0.0.2
최근 업데이트 2018-10-27
출시 날짜 2018-10-27
평점 4.33/5 총 6 개의 평점
개발자 maaslalani
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Vanity Metrics",
    "version": "0.0.2",
    "manifest_version": 2,
    "icons": {
        "128": "icons\/icon.png"
    },
    "description": "Hides the number of favorites, likes, and followers from your feed so you can focus on the content.",
    "browser_action": {
        "default_title": "Remove Vanity Metrics",
        "default_popup": "popups\/popup.html"
    },
    "permissions": [
        "http:\/\/twitter.com\/*",
        "https:\/\/twitter.com\/*",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "scripts\/twitter.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}