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ファイルをダウンロード
Add row to Google Sheets拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |