Feed Learn
FeedLearn helps you learn vocabulary by showing you quizzes as you browse your Facebook feed
What is Feed Learn?
Feed Learn is a Chrome extension developed by https://feedlearn.herokuapp.com, and its main feature is "FeedLearn helps you learn vocabulary by showing you quizzes as you browse your Facebook feed".
Extension Screenshots
Download Feed Learn Extension CRX File
Download Feed Learn extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
FeedLearn helps you learn Japanese vocabulary as you browse your Facebook feed by showing you quizzes as you browse your Facebook feed. Please login at https://feedlearn.herokuapp.com/study1 and do the pre-test for week 1 vocabulary after installing.
Extension Basic Information
Name | Feed Learn |
ID | ebmjdfhplinmlajmdcmhkikideknlgkf |
Official URL | https://chromewebstore.google.com/detail/feed-learn/ebmjdfhplinmlajmdcmhkikideknlgkf |
Description | FeedLearn helps you learn vocabulary by showing you quizzes as you browse your Facebook feed |
File Size | 46 KB |
Installation Count | 14 |
Current Version | 1.18 |
Last Updated | 2015-09-16 |
Publish Date | 2015-09-16 |
Rating | 4.67/5 Total 3 Ratings |
Developer | https://feedlearn.herokuapp.com |
[email protected] | |
Payment Type | free |
Extension Website | https://feedlearn.herokuapp.com/ |
Help Page URL | https://feedlearn.herokuapp.com/ |
Privacy Policy Page URL | https://github.com/habitlab/habitlab/wiki/Privacy |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Feed Learn", "short_name": "feedlearn", "description": "FeedLearn helps you learn vocabulary by showing you quizzes as you browse your Facebook feed", "version": "1.18", "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "cookies", "http:\/\/facebook.com\/*", "https:\/\/facebook.com\/*", "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*", "http:\/\/feedlearn.herokuapp.com\/*", "https:\/\/feedlearn.herokuapp.com\/*" ], "background": { "scripts": [ "jquery-1.11.1.min.js", "baseurl.js", "background.js" ], "persistent": false }, "content_scripts": [ { "all_frames": true, "js": [ "jquery-1.11.1.min.js", "jquery.isinview.js", "baseurl.js", "feedlearn.js" ], "matches": [ "http:\/\/facebook.com\/*", "https:\/\/facebook.com\/*", "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ], "run_at": "document_end" }, { "all_frames": true, "js": [ "jquery-1.11.1.min.js", "feedlearninstalled.js" ], "matches": [ "http:\/\/feedlearn.herokuapp.com\/study1", "https:\/\/feedlearn.herokuapp.com\/study1" ], "run_at": "document_end" } ] } |