Thinkful
Access Thinkful courses easily and enable screensharing support in mentor sessions.
Vad är Thinkful?
Thinkful är en Chrome-tillägg utvecklad av eng.thinkful, och dess huvudfunktion är "Access Thinkful courses easily and enable screensharing support in mentor sessions.".
Tilläggsskärmbilder
Ladda ner Thinkful-förlängningens CRX-fil
Ladda ner Thinkful-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Access the Thinkful platform with one click from our chrome extension.
Grundläggande Information om Tillägg
Namn | |
ID | hdifhbpniaokcjogffalpnbphplppdcb |
Officiell webbadress | https://chromewebstore.google.com/detail/thinkful/hdifhbpniaokcjogffalpnbphplppdcb |
Beskrivning | Access Thinkful courses easily and enable screensharing support in mentor sessions. |
Filstorlek | 9.73 KB |
Antal Installationer | 2,330 |
Aktuell Version | 1.8 |
Senast Uppdaterad | 2021-08-26 |
Publiceringsdatum | 2021-08-26 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | eng.thinkful |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.thinkful.com |
Hjälpsida URL | https://www.thinkful.com/faq/ |
Stödda Språk | 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" } } |