Study Squirrel

A study aid for the easily distractable

什麼是Study Squirrel?

Study Squirrel是由lggorman開發的Chrome擴展程式,該擴展的主要功能是“A study aid for the easily distractable”。

擴展截圖

screenshot

下載Study Squirrel擴展crx文件

下載Study Squirrel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Study Squirrel Study Squirrel
ID hgjlbaiocakmglfpmefaldfikhakmjan
官方網址 https://chrome.google.com/webstore/detail/study-squirrel/hgjlbaiocakmglfpmefaldfikhakmjan
簡介 A study aid for the easily distractable
檔案大小 65.11 KB
安裝次數 104
目前版本 1.4
更新時間 2015-04-03
上架時間 2015-04-03
評分 2.43/5 共 7 次評分
開發者 lggorman
付費類型 free
支援的語言 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
    }
}