Blockr
A simple, lightweight post blocking solution for Tumblr
What is Blockr?
Blockr is a Chrome extension developed by Elizabeth Harper, and its main feature is "A simple, lightweight post blocking solution for Tumblr".
Extension Screenshots
Download Blockr Extension CRX File
Download Blockr extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Blockr |
ID | hnaljgbbcjabdcibeliipmcifmfeionc |
Official URL | https://chromewebstore.google.com/detail/blockr/hnaljgbbcjabdcibeliipmcifmfeionc |
Description | A simple, lightweight post blocking solution for Tumblr |
File Size | 24.03 KB |
Installation Count | 28 |
Current Version | 1.1.1 |
Last Updated | 2017-05-01 |
Publish Date | 2017-05-01 |
Rating | 4.25/5 Total 4 Ratings |
Developer | Elizabeth Harper |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/EllieFops/blockr |
Help Page URL | https://github.com/EllieFops/blockr/issues |
Supported Languages | 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" } } |