Study Squirrel

A study aid for the easily distractable

Study Squirrelคืออะไร?

Study Squirrel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lggorman และคุณลักษณะหลักของมันคือ "A study aid for the easily distractable"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Study Squirrel

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
    }
}