Open to Scroll
An extension to open a link to the same position on the page as you are currently scrolled to.
Open to Scroll란 무엇입니까?
Open to Scroll은(는) laurence2000에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to open a link to the same position on the page as you are currently scrolled to."입니다.
확장 프로그램 스크린샷
Open to Scroll 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to navigate pages on websites while maintaining your current position. Useful for browsing within a site that has a constant layout, particularly video streaming sites, it allows you to move from one video to the next without adjusting the page. Update version 1.12: Modernized code Fixed required permissions Redirect links should now work. Update version 1.11 Fixed code to allow using links without opening a new tab --Fix only works for links without redirects, you can open a link an maintain position only if the url on the link matches the url you end on. Will look into fixing this Update version 1.1: Cleaned up visible components Added Icons Sped up the code
확장 프로그램 기본 정보
이름 | Open to Scroll |
ID | locammkpnfafhjppibeobpibdeobafkg |
공식 URL | https://chromewebstore.google.com/detail/open-to-scroll/locammkpnfafhjppibeobpibdeobafkg |
설명 | An extension to open a link to the same position on the page as you are currently scrolled to. |
파일 크기 | 28.97 KB |
설치 횟수 | 46 |
현재 버전 | 1.12 |
최근 업데이트 | 2023-03-07 |
출시 날짜 | 2015-09-23 |
개발자 | laurence2000 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Open to Scroll", "description": "An extension to open a link to the same position on the page as you are currently scrolled to.", "version": "1.12", "permissions": [ "contextMenus", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "icons": { "16": "16Icon.png", "48": "48Icon.png", "128": "128Icon.png" }, "background": { "service_worker": "scrollMenu.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scroll.js" ] } ] } |