Quran Annotate

Save vocabulary to memorize while reading the Quran.

Что такое Quran Annotate?

Quran Annotate - это расширение Chrome, разработанное quranannotate, и его основная функция - "Save vocabulary to memorize while reading the Quran.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Quran Annotate

Скачайте файлы расширений 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.                    

Основная информация о расширении

Название Quran Annotate Quran Annotate
ID glecejlnidccgagdfdjpboknhmfalhhh
Официальный URL 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"
            ]
        }
    ]
}