Study Squirrel

A study aid for the easily distractable

Qu'est-ce que Study Squirrel ?

Study Squirrel est une extension Chrome développée par lggorman, et sa fonction principale est "A study aid for the easily distractable".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Study Squirrel

Téléchargez les fichiers d'extension Study Squirrel au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Study Squirrel Study Squirrel
ID hgjlbaiocakmglfpmefaldfikhakmjan
URL Officiel https://chrome.google.com/webstore/detail/study-squirrel/hgjlbaiocakmglfpmefaldfikhakmjan
Description A study aid for the easily distractable
Taille du Fichier 65.11 KB
Nombre d'Installations 104
Version Actuelle 1.4
Dernière Mise à Jour 2015-04-03
Date de Publication 2015-04-03
Évaluation 2.43/5 Total 7 Évaluations
Développeur lggorman
Type de Paiement free
Langues Prises en Charge 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
    }
}