Study Squirrel
A study aid for the easily distractable
Study Squirrelとは何ですか?
Study Squirrelはlggormanによって開発されたChromeの拡張機能で、その主な機能は「A study aid for the easily distractable」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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 } } |