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文件

下载Remove Vanity Metrics扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
        }
    ]
}