SE Block
Block all of that distracting sidebar stuff in the excellent Stack Exchange network.
SE Block란 무엇입니까?
SE Block은(는) chrisbodhi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block all of that distracting sidebar stuff in the excellent Stack Exchange network."입니다.
확장 프로그램 스크린샷
SE Block 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a Google Chrome extension that cleans up some of the cruft from the otherwise excellent Stack Exchange pages. The idea for the extension came about as I started my first job as a web developer and, subsequently, came to spend more and more of my day scanning Stack Overflow, Server Fault, Ask Ubuntu, &c. I became increasingly distracted by the sidebar links, which may have had to do with all of the coffee I drink. Rather than just popping open the browser console to individually hide the modules on especially jittery days, I decided to just write an extension to block them all of the time.
확장 프로그램 기본 정보
이름 | |
ID | ffpkepieaocfchmcokenleighplnifjh |
공식 URL | https://chrome.google.com/webstore/detail/se-block/ffpkepieaocfchmcokenleighplnifjh |
설명 | Block all of that distracting sidebar stuff in the excellent Stack Exchange network. |
파일 크기 | 11.31 KB |
설치 횟수 | 18 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2015-06-21 |
출시 날짜 | 2015-06-21 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | chrisbodhi |
결제 유형 | free |
도움말 페이지 URL | https://github.com/chrisbodhi/se-block |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.3", "manifest_version": 2, "description": "__MSG_appDescription__", "short_name": "SE Block", "author": "@chrisbodhi", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/stackoverflow.com\/*", "*:\/\/*.stackoverflow.com\/*", "*:\/\/stackexchange.com\/*", "*:\/\/*.stackexchange.com\/*", "*:\/\/serverfault.com\/*", "*:\/\/superuser.com\/*", "*:\/\/askubuntu.com\/*", "*:\/\/stackapps.com\/*", "*:\/\/mathoverflow.net\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "tabs", "*:\/\/stackoverflow.com\/*", "*:\/\/*.stackoverflow.com\/*", "*:\/\/stackexchange.com\/*", "*:\/\/*.stackexchange.com\/*", "*:\/\/serverfault.com\/*", "*:\/\/superuser.com\/*", "*:\/\/askubuntu.com\/*", "*:\/\/stackapps.com\/*", "*:\/\/mathoverflow.net\/*" ] } |