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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Add row to Google Sheets Add row to Google Sheets
ID baikkcmfolbapkeefcdccadmelcnijcd
官方網址 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"
    ]
}