Study Squirrel
A study aid for the easily distractable
O que é Study Squirrel?
Study Squirrel é uma extensão do Chrome desenvolvida por lggorman, e sua principal característica é "A study aid for the easily distractable".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Study Squirrel
Baixe arquivos de extensão Study Squirrel 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
Study Squirrel is a tool intended to help you study (or learn something new) while browsing the web. Select one of the default vocab sets (SAT or GRE) or a custom set from quizlet.com, and Study Squirrel will show you a new random vocab card on either each page load or each new tab. Basically, the idea is to make your aimless web wanderings just a little more productive :) After downloading, go to chrome://extensions and check out the options page for custom settings.
Informações Básicas da Extensão
Nome | |
ID | hgjlbaiocakmglfpmefaldfikhakmjan |
URL Oficial | https://chrome.google.com/webstore/detail/study-squirrel/hgjlbaiocakmglfpmefaldfikhakmjan |
Descrição | A study aid for the easily distractable |
Tamanho do Arquivo | 65.11 KB |
Contagem de Instalações | 104 |
Versão Atual | 1.4 |
Última Atualização | 2015-04-03 |
Data de Publicação | 2015-04-03 |
Classificação | 2.43/5 Total de 7 Avaliações |
Desenvolvedor | lggorman |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Study Squirrel", "description": "A study aid for the easily distractable", "version": "1.4", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "https:\/\/api.quizlet.com\/*", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "squirrel.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |