Stop Slide Scrolling in Google Presentation
Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.
Stop Slide Scrolling in Google Presentation란 무엇입니까?
Stop Slide Scrolling in Google Presentation은(는) https://sneakaway.studio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc."입니다.
확장 프로그램 스크린샷
Stop Slide Scrolling in Google Presentation 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension stops the annoying accidental slide scrolling behavior in Google Drive, including presentations, drawings, calendar, and more. Fixes a terribly irritating problem where Google Drive Presentations automatically jump to the next slide unexpectedly, usually as a result of using the non-scroll-indexed devices like Apple Magic Mouse. The extension will need to request permissions to fix the issue. FAQ, source code, and license https://github.com/sneakaway-studio/stop-slide-scrolling
확장 프로그램 기본 정보
이름 | Stop Slide Scrolling in Google Presentation |
ID | cmpmjbfhpecollipohbphhgbohleeeon |
공식 URL | https://chromewebstore.google.com/detail/stop-slide-scrolling-in-g/cmpmjbfhpecollipohbphhgbohleeeon |
설명 | Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc. |
파일 크기 | 23.69 KB |
설치 횟수 | 20,000 |
현재 버전 | 0.1.5 |
최근 업데이트 | 2022-06-23 |
출시 날짜 | 2019-11-05 |
평점 | 4.68/5 총 99 개의 평점 |
개발자 | https://sneakaway.studio |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://sneakaway.studio |
도움말 페이지 URL | https://github.com/sneakaway-studio/stop-slide-scrolling |
개인정보 보호 정책 페이지 URL | https://tallysavestheinternet.com/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Stop Slide Scrolling in Google Presentation", "version": "0.1.5", "author": "Owen Mundy", "homepage_url": "https:\/\/github.com\/sneakaway-studio\/stop-slide-scrolling", "description": "Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.", "icons": { "16": "assets\/img\/icon16.png", "48": "assets\/img\/icon48.png", "128": "assets\/img\/icon128.png" }, "action": { "default_icon": { "16": "assets\/img\/icon16.png", "48": "assets\/img\/icon48.png" }, "default_title": "Stop Slide Scrolling in Google Presentation", "default_popup": "pages\/popup.html" }, "background": { "service_worker": "assets\/js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/presentation\/*", "https:\/\/docs.google.com\/drawings\/*", "https:\/\/calendar.google.com\/*" ], "js": [ "assets\/js\/content.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "offline_enabled": true, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |