Blockr

A simple, lightweight post blocking solution for Tumblr

Blockr란 무엇입니까?

Blockr은(는) Elizabeth Harper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple, lightweight post blocking solution for Tumblr"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Blockr is a post blocker for the popular blogging site Tumblr.  This extension adds a small button to each post which blocks the post from your dashboard. Posts are blocked based on their root post ID so the post will be hidden no matter who reblogs it.

The block button is located at the top right of each post so users can block offensive or unwanted content without having to scroll through the entirety of a post.                    

확장 프로그램 기본 정보

이름 Blockr Blockr
ID hnaljgbbcjabdcibeliipmcifmfeionc
공식 URL https://chromewebstore.google.com/detail/blockr/hnaljgbbcjabdcibeliipmcifmfeionc
설명 A simple, lightweight post blocking solution for Tumblr
파일 크기 24.03 KB
설치 횟수 28
현재 버전 1.1.1
최근 업데이트 2017-05-01
출시 날짜 2017-05-01
평점 4.25/5 총 4 개의 평점
개발자 Elizabeth Harper
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/EllieFops/blockr
도움말 페이지 URL https://github.com/EllieFops/blockr/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blockr",
    "description": "A simple, lightweight post blocking solution for Tumblr",
    "version": "1.1.1",
    "author": {
        "name": "Elizabeth Harper",
        "email": "[email protected]",
        "url": "https:\/\/github.com\/EllieFops"
    },
    "incognito": "not_allowed",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tumblr.com\/dashboard"
            ],
            "css": [
                "css\/blockr.css"
            ],
            "js": [
                "js\/blockr.js"
            ]
        }
    ],
    "icons": {
        "16": "res\/16.png",
        "32": "res\/32.png",
        "48": "res\/48.png",
        "128": "res\/128.png"
    }
}