Google Forms Autosubmit
Google forms auto-submit application built with React JS
Google Forms Autosubmit क्या है?
Google Forms Autosubmit DevlUp Labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Google forms auto-submit application built with React JS"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Forms Autosubmit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension allows you to set an alarm for a Google form that you may wish to complete in the future before the deadline. You may also use it to auto-submit a Google Form that has been assigned to you in the Google Classroom. To ensure that the Google Form submission occurs at the correct time, the user will manually input the form URL, as well as the starting and ending times. The user may see the alarms they've set on the "Alarms" page. The "Find Form" button on the "Automatic" Page allows the user to locate the corresponding Google Form connected with the Assignment on Google Classroom, which is auto-submitted after the timer expires. If the Assignment does not have any google forms attached, the extension shows an error message. Hope you find this extension helpful :) This project is open-sourced at https://github.com/devlup-labs/auto-submit-quiz
एक्सटेंशन की मूल जानकारी
नाम | Google Forms Autosubmit |
ID | kkecpckbpgmoceclgfclfjellanlppda |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-forms-autosubmit/kkecpckbpgmoceclgfclfjellanlppda |
विवरण | Google forms auto-submit application built with React JS |
फ़ाइल का आकार | 1.93 MB |
स्थापना संख्या | 574 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2022-06-11 |
प्रकाशन तिथि | 2022-03-30 |
रेटिंग | 4.88/5 कुल 8 रेटिंग्स |
डेवलपर | DevlUp Labs |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/devlup-labs/auto-submit-quiz/issues |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Google forms auto-submit application built with React JS", "version": "1.1.0", "manifest_version": 3, "name": "Google Forms Autosubmit", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" } }, "cross_origin_embedder_policy": { "value": "require-corp" }, "cross_origin_opener_policy": { "value": "same-origin" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/forms\/*", "https:\/\/classroom.google.com\/*" ], "js": [ "contentScript.bundle.js" ] } ], "permissions": [ "storage", "alarms", "activeTab" ] } |