StackOverflow focus
Remove all unnecessary clutter when looking for help on StackOverflow.
StackOverflow focus란 무엇입니까?
StackOverflow focus은(는) https://eliasruiz.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove all unnecessary clutter when looking for help on StackOverflow."입니다.
확장 프로그램 스크린샷
StackOverflow focus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Available on Firefox: https://addons.mozilla.org/en-US/firefox/addon/stackoverflow-focus/ **New** 1.3 This update brings the focus experience to all of the StackExchange platform and not just StackOverflow. 1.2 Flicker removed, now it's much quicker to apply the distraction free experience when opening a StackOverflow page. Special thanks to https://vantezzen.io for this update. 1.1.0 Some minor bus fixed. Option to remove drop shadow. Option to customise the background colour. The plugin now works with all localised versions of StackOverflow. Make sure to check out my other product, WebBites.io, a new and modern bookmarking tool. With a focus on aesthetics and accessibility. https://webbites.io.
확장 프로그램 기본 정보
이름 | StackOverflow focus |
ID | gaeipjkcdkpbfdfmakonllgiboaonopp |
공식 URL | https://chromewebstore.google.com/detail/stackoverflow-focus/gaeipjkcdkpbfdfmakonllgiboaonopp |
설명 | Remove all unnecessary clutter when looking for help on StackOverflow. |
파일 크기 | 293 KB |
설치 횟수 | 699 |
현재 버전 | 1.3 |
최근 업데이트 | 2021-08-03 |
출시 날짜 | 2020-07-17 |
평점 | 4.88/5 총 17 개의 평점 |
개발자 | https://eliasruiz.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/elrumo/stackOverflow_focus |
도움말 페이지 URL | https://github.com/elrumo/stackOverflow_focus |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow focus", "version": "1.3", "icons": { "128": "icon.png" }, "description": "Remove all unnecessary clutter when looking for help on StackOverflow.", "content_scripts": [ { "js": [ "content.js" ], "css": [ "content.css" ], "matches": [ "https:\/\/stackoverflow.com\/questions\/*", "https:\/\/superuser.com\/questions\/*", "https:\/\/serverfault.com\/questions\/*", "https:\/\/askubuntu.com\/questions\/*", "https:\/\/askubuntu.com\/questions\/*", "https:\/\/ja.stackexchange.com\/questions\/*", "https:\/\/*.stackexchange.com\/questions\/*" ], "run_at": "document_start" } ], "permissions": [ "activeTab", "storage" ], "browser_action": { "default_name": "StackOverflow Focus", "default_icon": "icon.png", "default_popup": "popup.html" } } |