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文件
下載Feed Learn擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | ebmjdfhplinmlajmdcmhkikideknlgkf |
| 官方網址 | 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"
}
]
} | |