Add row to Google Sheets
Allows you to add a row to a Google Sheet from a browser popup
Add row to Google Sheets란 무엇입니까?
Add row to Google Sheets은(는) gsingh93에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to add a row to a Google Sheet from a browser popup"입니다.
확장 프로그램 스크린샷
Add row to Google Sheets 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to add a select a Google Sheet and add a row to it from a browser popup. Great for note taking when you don't want to open up the slow Google Sheets web page. This extension is open source, the code can be found here: https://github.com/gsingh93/add-row-to-google-sheets-extension. Please file issues here: https://github.com/gsingh93/add-row-to-google-sheets-extension/issues. I do not check Chrome Store reviews.
확장 프로그램 기본 정보
이름 | Add row to Google Sheets |
ID | baikkcmfolbapkeefcdccadmelcnijcd |
공식 URL | https://chromewebstore.google.com/detail/add-row-to-google-sheets/baikkcmfolbapkeefcdccadmelcnijcd |
설명 | Allows you to add a row to a Google Sheet from a browser popup |
파일 크기 | 4.89 KB |
설치 횟수 | 167 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2019-03-04 |
출시 날짜 | 2019-03-04 |
개발자 | gsingh93 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/gsingh93/add-row-to-google-sheets-extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add row to Google Sheets", "version": "0.0.1", "manifest_version": 2, "description": "Allows you to add a row to a Google Sheet from a browser popup", "homepage_url": "https:\/\/github.com\/gsingh93\/add-row-to-google-sheets-extension", "browser_action": { "default_title": "Add row to Google Sheets", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self';", "oauth2": { "client_id": "10813019713-2eo6i3k0jsao51ce1gr1sr3pugkc933p.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/drive.metadata.readonly", "https:\/\/www.googleapis.com\/auth\/spreadsheets" ] }, "permissions": [ "identity" ] } |