Invisible Google Slide Control Bar
Control your Google Slide control bar.
Τι είναι το Invisible Google Slide Control Bar;
Το Invisible Google Slide Control Bar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thumbd12856, και η κύρια λειτουργία του είναι "Control your Google Slide control bar.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Invisible Google Slide Control Bar
Λήψη αρχείων επέκτασης Invisible Google Slide Control Bar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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": [ "*:\/\/*\/*" ] } |