Thinkful
Access Thinkful courses easily and enable screensharing support in mentor sessions.
Thinkful क्या है?
Thinkful eng.thinkful द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Access Thinkful courses easily and enable screensharing support in mentor sessions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Thinkful एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Access the Thinkful platform with one click from our chrome extension.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hdifhbpniaokcjogffalpnbphplppdcb |
आधिकारिक URL | https://chromewebstore.google.com/detail/thinkful/hdifhbpniaokcjogffalpnbphplppdcb |
विवरण | Access Thinkful courses easily and enable screensharing support in mentor sessions. |
फ़ाइल का आकार | 9.73 KB |
स्थापना संख्या | 2,330 |
वर्तमान संस्करण | 1.8 |
अंतिम अपडेट | 2021-08-26 |
प्रकाशन तिथि | 2021-08-26 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | eng.thinkful |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.thinkful.com |
सहायता पृष्ठ URL | https://www.thinkful.com/faq/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Thinkful", "author": "Thinkful, Inc.", "homepage_url": "http:\/\/www.thinkful.com\/", "version": "1.8", "minimum_chrome_version": "34", "description": "Access Thinkful courses easily and enable screensharing support in mentor sessions.", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "permissions": [ "desktopCapture", "cookies", "*:\/\/*.thinkful.com\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.thinkful.com\/*", "*:\/\/t.ful\/*" ] }, "content_scripts": [ { "js": [ "js\/content-script.js" ], "all_frames": true, "matches": [ "*:\/\/*.thinkful.com\/*", "*:\/\/t.ful\/*" ] } ], "background": { "scripts": [ "js\/background\/global.js", "js\/background\/app.js", "js\/background\/screensharing.js" ], "persistent": false }, "browser_action": { "default_title": "Thinkful" } } |