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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Stop Slide Scrolling in Google Presentation एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'" } } |