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

下載Blockr擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}