Invisible Google Slide Control Bar
Control your Google Slide control bar.
Invisible Google Slide Control Bar là gì?
Invisible Google Slide Control Bar là một tiện ích mở rộng Chrome được phát triển bởi thumbd12856, và tính năng chính của nó là "Control your Google Slide control bar.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Invisible Google Slide Control Bar
Tải xuống các tệp mở rộng Invisible Google Slide Control Bar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hgaahalodagndnfjpggmojcbdololagh |
URL Chính Thức | https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh |
Mô tả | Control your Google Slide control bar. |
Kích Thước Tệp | 193 KB |
Số Lần Cài Đặt | 2,551 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2019-09-29 |
Ngày Phát Hành | 2019-09-28 |
Đánh Giá | 4.82/5 Tổng số 22 Đánh Giá |
Nhà Phát Triển | thumbd12856 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*:\/\/*\/*" ] } |