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文件
下載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 |
官方網址 | 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'" } } |