Google Apps Sidebar Toggle
Toggle the project navigator sidebar open and closed
Wat is Google Apps Sidebar Toggle?
Google Apps Sidebar Toggle is een Chrome-extensie ontwikkeld door seaston, en de belangrijkste functie is "Toggle the project navigator sidebar open and closed".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Apps Sidebar Toggle
Download Google Apps Sidebar Toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Toggle the project navigator sidebar open and closed in the Google Apps Script IDE
Basisinformatie over de Extensie
Naam | Google Apps Sidebar Toggle |
ID | ohpabiillaflohfmoelpklnloimplacc |
Officiële URL | https://chromewebstore.google.com/detail/google-apps-sidebar-toggl/ohpabiillaflohfmoelpklnloimplacc |
Beschrijving | Toggle the project navigator sidebar open and closed |
Bestandsgrootte | 38.26 KB |
Aantal Installaties | 596 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2016-11-05 |
Publicatiedatum | 2016-11-04 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | seaston |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |