Study Squirrel
A study aid for the easily distractable
Study Squirrel क्या है?
Study Squirrel lggorman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A study aid for the easily distractable"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Study Squirrel एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |