Invisible Google Slide Control Bar
Control your Google Slide control bar.
Invisible Google Slide Control Bar क्या है?
Invisible Google Slide Control Bar thumbd12856 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control your Google Slide control bar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Invisible Google Slide Control Bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Have you ever thought it is annoying that when presenting the Google Slide, the control bar shows while the cursor nearing it? Now, you can control when to display/hide the Google Slide control bar by pressing a button! Also, you can go for a toy example on the simple test page: https://docs.google.com/presentation/d/1fUmsYkhQBpPGDVM1ErU8aL7bc0LmANjq8JA4WE0AjIs The source code is open at https://github.com/thumbe12856/chrome-extension/tree/master/Invisible%20Google%20Slide%20Control%20Bar
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hgaahalodagndnfjpggmojcbdololagh |
आधिकारिक URL | https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh |
विवरण | Control your Google Slide control bar. |
फ़ाइल का आकार | 193 KB |
स्थापना संख्या | 2,551 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2019-09-29 |
प्रकाशन तिथि | 2019-09-28 |
रेटिंग | 4.82/5 कुल 22 रेटिंग्स |
डेवलपर | thumbd12856 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Invisible Google Slide Control Bar", "description": "Control your Google Slide control bar.", "version": "1.1", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "index.html" }, "background": { "scripts": [ "index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "assets\/lodash.min.js" ] } ], "permissions": [ "*:\/\/*\/*" ] } |