Thinkful
Access Thinkful courses easily and enable screensharing support in mentor sessions.
O que é Thinkful?
Thinkful é uma extensão do Chrome desenvolvida por eng.thinkful, e sua principal característica é "Access Thinkful courses easily and enable screensharing support in mentor sessions.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Thinkful
Baixe arquivos de extensão Thinkful no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Access the Thinkful platform with one click from our chrome extension.
Informações Básicas da Extensão
Nome | |
ID | hdifhbpniaokcjogffalpnbphplppdcb |
URL Oficial | https://chromewebstore.google.com/detail/thinkful/hdifhbpniaokcjogffalpnbphplppdcb |
Descrição | Access Thinkful courses easily and enable screensharing support in mentor sessions. |
Tamanho do Arquivo | 9.73 KB |
Contagem de Instalações | 2,330 |
Versão Atual | 1.8 |
Última Atualização | 2021-08-26 |
Data de Publicação | 2021-08-26 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | eng.thinkful |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.thinkful.com |
URL da Página de Ajuda | https://www.thinkful.com/faq/ |
Idiomas Suportados | 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" } } |