Study Squirrel
A study aid for the easily distractable
Hvad er Study Squirrel?
Study Squirrel er en Chrome-udvidelse udviklet af lggorman, og dens hovedfunktion er "A study aid for the easily distractable".
Udvidelsesskærmbilleder
Download Study Squirrel-udvidelses-CRX-fil
Download Study Squirrel-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | hgjlbaiocakmglfpmefaldfikhakmjan |
Officiel URL | https://chrome.google.com/webstore/detail/study-squirrel/hgjlbaiocakmglfpmefaldfikhakmjan |
Beskrivelse | A study aid for the easily distractable |
Filstørrelse | 65.11 KB |
Antal Installationer | 104 |
Nuværende Version | 1.4 |
Senest Opdateret | 2015-04-03 |
Udgivelsesdato | 2015-04-03 |
Bedømmelse | 2.43/5 Samlet 7 Bedømmelser |
Udvikler | lggorman |
Betalingsmetode | free |
Understøttede Sprog | 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 } } |