├── README.md ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json └── es │ └── messages.json ├── docs-32.png ├── drawings-32.png ├── drive_icon.png ├── forms-32.png ├── icon.png ├── icons ├── suite_128.png ├── suite_16.png ├── suite_38.png └── suite_48.png ├── index.html ├── manifest.json ├── options.html ├── options.js ├── popup.js ├── presentations-32.png ├── spreadsheets-32.png └── styles.css /README.md: -------------------------------------------------------------------------------- 1 | Google Docs Quick Create 2 | ======================== 3 | 4 | Simple Chrome Extension for creating new documents in Google Drive 5 | 6 | Available in the Chrome Web Store at https://chrome.google.com/webstore/detail/google-docs-quick-create/bldgenmjegcnjebiongilahhcjldgmlm 7 | -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Google Docs Quick Create" 4 | }, 5 | "description": { 6 | "message": "Erstelle neue Google Drive Dokumente direkt aus der Browser Leiste." 7 | }, 8 | "new_doc": { 9 | "message": "Neues Dokument" 10 | }, 11 | "new_sheet": { 12 | "message": "Neue Tabelle" 13 | }, 14 | "new_prez": { 15 | "message": "Neue Präsentation" 16 | }, 17 | "new_draw": { 18 | "message": "Neue Zeichnung" 19 | }, 20 | "new_form": { 21 | "message": "Neues Formular" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Google Docs Quick Create" 4 | }, 5 | "description": { 6 | "message": "Create new Documents for Google Drive from your browser bar." 7 | }, 8 | "new_doc": { 9 | "message": "New Document" 10 | }, 11 | "new_sheet": { 12 | "message": "New Spreadsheet" 13 | }, 14 | "new_prez": { 15 | "message": "New Presentation" 16 | }, 17 | "new_draw": { 18 | "message": "New Drawing" 19 | }, 20 | "new_form": { 21 | "message": "New Form" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /_locales/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Crear Rápida para Google Docs" 4 | }, 5 | "description": { 6 | "message": "Crear nuevos documentos para Google Drive usando la barra del navegador." 7 | }, 8 | "new_doc": { 9 | "message": "Nuevo Documento" 10 | }, 11 | "new_sheet": { 12 | "message": "Nueva Hoja de Cálculo" 13 | }, 14 | "new_prez": { 15 | "message": "Nueva Presentación" 16 | }, 17 | "new_draw": { 18 | "message": "Nuevo Dibujo" 19 | }, 20 | "new_form": { 21 | "message": "Nuevo Formulario" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /docs-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/docs-32.png -------------------------------------------------------------------------------- /drawings-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/drawings-32.png -------------------------------------------------------------------------------- /drive_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/drive_icon.png -------------------------------------------------------------------------------- /forms-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/forms-32.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/icon.png -------------------------------------------------------------------------------- /icons/suite_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/icons/suite_128.png -------------------------------------------------------------------------------- /icons/suite_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/icons/suite_16.png -------------------------------------------------------------------------------- /icons/suite_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/icons/suite_38.png -------------------------------------------------------------------------------- /icons/suite_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmihal/Google-Docs-Quick-Create/a57830f6afcef6377a493996efaec9557aeef55d/icons/suite_48.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |