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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to add a row to a Google Sheet from a browser popup"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Add row to Google Sheets एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |