Twitter Block Chain

Blocks all users on a following/followers page.

Twitter Block Chain란 무엇입니까?

Twitter Block Chain은(는) devFluid에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks all users on a following/followers page."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Reduce the damage done by retweeting and dogpiling. Simply navigate to a user's followers/following page and activate the extension by clicking the icon next to the omnibox/address bar. The extension does not block users you are following, or re-block users that have already been blocked. You can also export and import lists of followers in a special format. If an abusive user has blocked you, you can use the export function to retrieve the list of their followers/followings after logging out, and then import the result after logging back in to Twitter.

View blocking receipts and add protected users by right clicking the extension's icon and choosing "Options."

Please report issues on GitHub: https://github.com/satsukitv/twitter-block-chain/issues

Source available here: https://github.com/satsukitv/twitter-block-chain                    

확장 프로그램 기본 정보

이름 Twitter Block Chain Twitter Block Chain
ID dkkfampndkdnjffkleokegfnibnnjfah
공식 URL https://chromewebstore.google.com/detail/twitter-block-chain/dkkfampndkdnjffkleokegfnibnnjfah
설명 Blocks all users on a following/followers page.
파일 크기 299 KB
설치 횟수 68,013
현재 버전 1.8.3
최근 업데이트 2019-05-20
출시 날짜 2019-05-20
평점 2.73/5 총 402 개의 평점
개발자 devFluid
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/satsukitv/twitter-block-chain
도움말 페이지 URL https://github.com/satsukitv/twitter-block-chain/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Block Chain",
    "description": "Blocks all users on a following\/followers page.",
    "version": "1.8.3",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.twimg.com\/",
        "https:\/\/api.twitter.com\/",
        "https:\/\/mobile.twitter.com\/",
        "https:\/\/twitter.com\/"
    ],
    "options_ui": {
        "browser_style": true,
        "open_in_tab": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/Queue.js",
                "js\/ExtensionStorage.js",
                "bower_components\/jquery\/dist\/jquery.min.js",
                "js\/blockchain.js"
            ]
        }
    ]
}