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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } } |