PenaltyBlox
When following is too much, but unfollowing is too harsh.
PenaltyBloxとは何ですか?
PenaltyBloxはiaconoによって開発されたChromeの拡張機能で、その主な機能は「When following is too much, but unfollowing is too harsh.」です。
拡張機能のスクリーンショット
PenaltyBlox拡張機能のCRXファイルをダウンロード
PenaltyBlox拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Whether it is a designer ultra-tweeting about some conference she is at or a venture capitalist intensely describing his pursuit of the always-elusive "inbox zero", sometimes you just want to mute someone you follow on Twitter. This extensions allows you to do just that. You can easily put accounts that you follow and hashtags that you wish would go away in the penalty box, where they will be silenced and feel shame. When you have deemed their sins absolved, you can let them out, free to fill your Twitter stream again. Open sourced @ https://github.com/jeffreyiacono/penalty-blox ... send me a PR!
拡張機能の基本情報
名前 | PenaltyBlox |
ID | ajoigckelmnkcjajbeinpkmbndeiokdg |
公式URL | https://chromewebstore.google.com/detail/penaltyblox/ajoigckelmnkcjajbeinpkmbndeiokdg |
説明 | When following is too much, but unfollowing is too harsh. |
ファイルサイズ | 83.72 KB |
インストール数 | 90 |
現在のバージョン | 1.1.1 |
最終更新日 | 2016-06-26 |
公開日 | 2016-06-26 |
評価 | 4.86/5 合計 21 レビュー |
開発者 | iacono |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PenaltyBlox", "short_name": "PenaltyBlox", "manifest_version": 2, "description": "When following is too much, but unfollowing is too harsh.", "version": "1.1.1", "homepage_url": "http:\/\/penaltyblox.com", "minimum_chrome_version": "13.0", "content_security_policy": "script-src 'unsafe-eval'; object-src 'self'", "icons": { "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "background", "storage" ], "options_page": "options.html", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/underscore.js", "js\/core_extensions.js", "js\/watcher.js", "js\/referee.js", "js\/content_script.js" ] } ], "browser_action": { "default_title": "Penalty Blox", "default_icon": "images\/icon.png", "default_popup": "popup.html" } } |