Quran Annotate
Save vocabulary to memorize while reading the Quran.
什麼是Quran Annotate?
Quran Annotate是由quranannotate開發的Chrome擴展程式,該擴展的主要功能是“Save vocabulary to memorize while reading the Quran.”。
擴展截圖
下載Quran Annotate擴展crx文件
下載Quran Annotate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Use this extension to save vocabulary while you are reading the Quran online. It currently works with https://quranwbw.com for and https://equranlibrary.com. You can view your saved vocabulary list on the extension page. 擴展基本資訊
| 名稱 | |
| ID | glecejlnidccgagdfdjpboknhmfalhhh |
| 官方網址 | https://chromewebstore.google.com/detail/quran-annotate/glecejlnidccgagdfdjpboknhmfalhhh |
| 簡介 | Save vocabulary to memorize while reading the Quran. |
| 檔案大小 | 1.43 MB |
| 安裝次數 | 24 |
| 目前版本 | 0.0.0.3 |
| 更新時間 | 2019-09-15 |
| 上架時間 | 2019-09-14 |
| 開發者 | quranannotate |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Quran Annotate",
"version": "0.0.0.3",
"manifest_version": 2,
"description": "Save vocabulary to memorize while reading the Quran.",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/32.png",
"128": "icon\/128.png"
},
"permissions": [
"storage",
"downloads"
],
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"title": "See your vocabulary"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.quranwbw.com\/*"
],
"js": [
"quranwbw.js"
]
},
{
"matches": [
"*:\/\/*.equranlibrary.com\/*"
],
"js": [
"equranlibrary.js"
]
}
]
} | |