Google Apps Sidebar Toggle
Toggle the project navigator sidebar open and closed
Google Apps Sidebar Toggle là gì?
Google Apps Sidebar Toggle là một tiện ích mở rộng Chrome được phát triển bởi seaston, và tính năng chính của nó là "Toggle the project navigator sidebar open and closed".
Ả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 Google Apps Sidebar Toggle
Tải xuống các tệp mở rộng Google Apps Sidebar Toggle 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
Toggle the project navigator sidebar open and closed in the Google Apps Script IDE
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Apps Sidebar Toggle |
ID | ohpabiillaflohfmoelpklnloimplacc |
URL Chính Thức | https://chromewebstore.google.com/detail/google-apps-sidebar-toggl/ohpabiillaflohfmoelpklnloimplacc |
Mô tả | Toggle the project navigator sidebar open and closed |
Kích Thước Tệp | 38.26 KB |
Số Lần Cài Đặt | 596 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2016-11-05 |
Ngày Phát Hành | 2016-11-04 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | seaston |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.2", "manifest_version": 2, "default_locale": "en", "name": "__MSG_appName__", "short_name": "gas-toggleSidebar", "author": "[email protected]", "description": "__MSG_appDesc__", "icons": { "16": "icon\/icon.png", "48": "icon\/icon.png", "128": "icon\/icon.png" }, "background": { "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/script.google.com\/*" ], "js": [ "libs\/jquery.min.js", "gasToggle.js" ], "all_frames": true, "run_at": "document_end" } ], "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "gasToggle.js", "content\/toggleBar.html", "content\/alert.html" ], "permissions": [ "https:\/\/script.google.com\/*", "declarativeContent" ] } |