Scroll Stop
Stop scrolling too far, and stay focused on what's important
Scroll Stop란 무엇입니까?
Scroll Stop은(는) indigoBox에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stop scrolling too far, and stay focused on what's important"입니다.
확장 프로그램 스크린샷
Scroll Stop 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Scroll Stop is a productivity extension designed to keep you focused on what's important. Choose all the sites you waste too much time on, and Scroll Stop will prevent you from browsing further than you tell it to on those sites. Simply tell Scroll Stop which websites to be active on, how far it should let you scroll on each, and whether you want Scroll Stop to close the distracting tab, clear it of all contents, or direct you to another website once you've hit your limit. Scroll Stop does not store any information outside your computer, and is 100% ad-free. We don't track you, record your data, or do anything else nefarious. Scroll Stop is a simple solution to a common problem, with none of the marketing or tracking code that makes competing applications slow and bloated. Spend less time scrolling, and more time working! Scroll Stop is a project of indigoBox Studios.
확장 프로그램 기본 정보
이름 | Scroll Stop |
ID | hjaclffbikdneicnleajghmppjdnnohl |
공식 URL | https://chromewebstore.google.com/detail/scroll-stop/hjaclffbikdneicnleajghmppjdnnohl |
설명 | Stop scrolling too far, and stay focused on what's important |
파일 크기 | 175 KB |
설치 횟수 | 934 |
현재 버전 | 0.0.6 |
최근 업데이트 | 2019-02-05 |
출시 날짜 | 2019-02-04 |
평점 | 4.27/5 총 11 개의 평점 |
개발자 | indigoBox |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Scroll Stop", "options_page": "settings.html", "description": "Stop scrolling too far, and stay focused on what's important", "version": "0.0.6", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "javascript\/inline.js" ] } ], "browser_action": { "default_icon": "images\/icon19-grey.png", "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "javascript\/background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/" ] } |