Google Apps Sidebar Toggle
Toggle the project navigator sidebar open and closed
什麼是Google Apps Sidebar Toggle?
Google Apps Sidebar Toggle是由seaston開發的Chrome擴展程式,該擴展的主要功能是“Toggle the project navigator sidebar open and closed”。
擴展截圖
下載Google Apps Sidebar Toggle擴展crx文件
下載Google Apps Sidebar Toggle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Toggle the project navigator sidebar open and closed in the Google Apps Script IDE
擴展基本資訊
名稱 | Google Apps Sidebar Toggle |
ID | ohpabiillaflohfmoelpklnloimplacc |
官方網址 | https://chromewebstore.google.com/detail/google-apps-sidebar-toggl/ohpabiillaflohfmoelpklnloimplacc |
簡介 | Toggle the project navigator sidebar open and closed |
檔案大小 | 38.26 KB |
安裝次數 | 596 |
目前版本 | 0.0.2 |
更新時間 | 2016-11-05 |
上架時間 | 2016-11-04 |
評分 | 5.00/5 共 2 次評分 |
開發者 | seaston |
付費類型 | free |
支援的語言 | 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" ] } |