Blockr

A simple, lightweight post blocking solution for Tumblr

Blockr là gì?

Blockr là một tiện ích mở rộng Chrome được phát triển bởi Elizabeth Harper, và tính năng chính của nó là "A simple, lightweight post blocking solution for Tumblr".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Blockr

Tải xuống các tệp mở rộng Blockr dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Blockr Blockr
ID hnaljgbbcjabdcibeliipmcifmfeionc
URL Chính Thức https://chromewebstore.google.com/detail/blockr/hnaljgbbcjabdcibeliipmcifmfeionc
Mô tả A simple, lightweight post blocking solution for Tumblr
Kích Thước Tệp 24.03 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2017-05-01
Ngày Phát Hành 2017-05-01
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Elizabeth Harper
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/EllieFops/blockr
URL Trang Trợ Giúp https://github.com/EllieFops/blockr/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}