Study Squirrel

A study aid for the easily distractable

Cos'è Study Squirrel?

Study Squirrel è un'estensione di Chrome sviluppata da lggorman, e la sua funzione principale è "A study aid for the easily distractable".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Study Squirrel

Scarica i file di estensione Study Squirrel in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Study Squirrel Study Squirrel
ID hgjlbaiocakmglfpmefaldfikhakmjan
URL Ufficiale https://chrome.google.com/webstore/detail/study-squirrel/hgjlbaiocakmglfpmefaldfikhakmjan
Descrizione A study aid for the easily distractable
Dimensione del File 65.11 KB
Conteggio Installazioni 104
Versione Corrente 1.4
Ultimo Aggiornamento 2015-04-03
Data di Pubblicazione 2015-04-03
Valutazione 2.43/5 Totale 7 Valutazioni
Sviluppatore lggorman
Tipo di Pagamento free
Lingue Supportate 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
    }
}