Scroll to Top - one press to the top
An easy way to take a page back to its top
Scroll to Top - one press to the top란 무엇입니까?
Scroll to Top - one press to the top은(는) lx223에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An easy way to take a page back to its top"입니다.
Scroll to Top - one press to the top 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are there times that after you read a really long post, you just have to go through the trouble of scrolling all the way to the top of the page? Have you ever imagined a simple click on a button that takes you to the top for every page? Here comes the easy-to-use Chrome extension that just does this fantastically. One press and it takes you to the top. It automatically finds out whether the current page can be scrolled up by the extension. If it is grey, it means either the page is already near its top or the page does not allow extension scrolling. If it is green, one click, it does all the magic for you. Simple and easy! You can also use Command+Shift+Z on Mac or Ctrl+Shift+Z on others as shortcuts.
확장 프로그램 기본 정보
이름 | Scroll to Top - one press to the top |
ID | hhoboiondmldfnjfegfahmbdodjpkhab |
공식 URL | https://chromewebstore.google.com/detail/scroll-to-top-one-press-t/hhoboiondmldfnjfegfahmbdodjpkhab |
설명 | An easy way to take a page back to its top |
파일 크기 | 46.82 KB |
설치 횟수 | 20 |
현재 버전 | 0.3.1 |
최근 업데이트 | 2015-10-14 |
출시 날짜 | 2015-10-14 |
개발자 | lx223 |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/lx223/scoll-to-top-chrome-extensioin |
도움말 페이지 URL | https://github.com/lx223/scoll-to-top-chrome-extensioin/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scroll to Top - one press to the top", "short_name": "Scroll to Top", "description": "An easy way to take a page back to its top", "version": "0.3.1", "minimum_chrome_version": "26", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "img\/icon38_inactive.png", "default_title": "Scroll to top" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Z", "mac": "Command+Shift+Z" } } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'", "permissions": [ "activeTab", "tabs", " |