Study Squirrel
A study aid for the easily distractable
Wat is Study Squirrel?
Study Squirrel is een Chrome-extensie ontwikkeld door lggorman, en de belangrijkste functie is "A study aid for the easily distractable".
Extensie Screenshots
Download het CRX-bestand van de extensie Study Squirrel
Download Study Squirrel-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | hgjlbaiocakmglfpmefaldfikhakmjan |
Officiële URL | https://chrome.google.com/webstore/detail/study-squirrel/hgjlbaiocakmglfpmefaldfikhakmjan |
Beschrijving | A study aid for the easily distractable |
Bestandsgrootte | 65.11 KB |
Aantal Installaties | 104 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2015-04-03 |
Publicatiedatum | 2015-04-03 |
Beoordeling | 2.43/5 Totaal 7 Beoordelingen |
Ontwikkelaar | lggorman |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |