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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sneakaway.studio และคุณลักษณะหลักของมันคือ "Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stop Slide Scrolling in Google Presentation
ดาวน์โหลดไฟล์ส่วนขยาย Stop Slide Scrolling in Google Presentation ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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'" } } |