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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |