Feed Learn
FeedLearn helps you learn vocabulary by showing you quizzes as you browse your Facebook feed
Feed Learn란 무엇입니까?
Feed Learn은(는) https://feedlearn.herokuapp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "FeedLearn helps you learn vocabulary by showing you quizzes as you browse your Facebook feed"입니다.
확장 프로그램 스크린샷
Feed Learn 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Feed Learn |
ID | ebmjdfhplinmlajmdcmhkikideknlgkf |
공식 URL | https://chromewebstore.google.com/detail/feed-learn/ebmjdfhplinmlajmdcmhkikideknlgkf |
설명 | FeedLearn helps you learn vocabulary by showing you quizzes as you browse your Facebook feed |
파일 크기 | 46 KB |
설치 횟수 | 14 |
현재 버전 | 1.18 |
최근 업데이트 | 2015-09-16 |
출시 날짜 | 2015-09-16 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | https://feedlearn.herokuapp.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://feedlearn.herokuapp.com/ |
도움말 페이지 URL | https://feedlearn.herokuapp.com/ |
개인정보 보호 정책 페이지 URL | https://github.com/habitlab/habitlab/wiki/Privacy |
지원되는 언어 | 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" } ] } |