Blockr
A simple, lightweight post blocking solution for Tumblr
什么是Blockr?
Blockr是由Elizabeth Harper开发的Chrome扩展程序,该扩展的主要功能是“A simple, lightweight post blocking solution for Tumblr”。
扩展截图
下载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.
扩展基本信息
名称 | |
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" } } |