SOFOCUS
Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.
SOFOCUS란 무엇입니까?
SOFOCUS은(는) Azimuth Apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY."입니다.
SOFOCUS 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SOFOCUS is a way to clear out the visual noise often experienced when visting stack overflow. Many times I find myself googling a programming question only to find myself on a page about "My girlfriend cannot stop farting at social events - what should I do?" a few clicks later. This is largely due to the massive list of questions to the right which distract my attention. I can't control myself so, of course, I made an extension to do it for me. It's pretty hacky but it works.
확장 프로그램 기본 정보
이름 | |
ID | jbolnfjpoapedfklembmebhjadcfhohp |
공식 URL | https://chrome.google.com/webstore/detail/sofocus/jbolnfjpoapedfklembmebhjadcfhohp |
설명 | Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY. |
파일 크기 | 217 KB |
설치 횟수 | 48 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2018-08-09 |
출시 날짜 | 2018-08-09 |
개발자 | Azimuth Apps |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SOFOCUS", "version": "0.0.1", "manifest_version": 2, "description": "Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.", "homepage_url": "http:\/\/extensionizr.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "https:\/\/stackoverflow.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/stackoverflow.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/stackoverflow.com\/*" ], "js": [ "js\/jquery\/jquery.js", "src\/inject\/inject.js" ] } ] } |