Scripture Guide

In-browser integration of scripture.guide

Что такое Scripture Guide?

Scripture Guide - это расширение Chrome, разработанное https://scripture.guide, и его основная функция - "In-browser integration of scripture.guide".

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

screenshot
screenshot
screenshot
screenshot

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

Скачайте файлы расширений Scripture Guide в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Browser integration of the scripture.guide.  Scripture references on the pages you browse will automatically turn into links that will allow you to effortlessly lookup the passages referenced.                    

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

Название Scripture Guide Scripture Guide
ID lkagejkikblabiegfnehlknmlgckhgan
Официальный URL https://chromewebstore.google.com/detail/scripture-guide/lkagejkikblabiegfnehlknmlgckhgan
Описание In-browser integration of scripture.guide
Размер файла 44.03 KB
Количество установок 37
Текущая Версия 1.2.6.17
Последнее Обновление 2020-10-18
Дата публикации 2018-09-27
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://scripture.guide
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://scripture.guide
URL страницы помощи http://scripture.guide/faq
URL страницы политики конфиденциальности http://kckern.com/privacy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scripture Guide",
    "description": "In-browser integration of scripture.guide",
    "version": "1.2.6.17",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "sg"
    },
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "64": "icon_64.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/scripture.guide\/*",
                "*:\/\/scriptures.info\/*",
                "*:\/\/isaiahexplained.com\/*",
                "*:\/\/*.isaiahexplained.com\/*",
                "*:\/\/*.bookofmormon.online\/*",
                "*:\/\/*.scripture.guide\/*",
                "*:\/\/*.scriptures.info\/*",
                "*:\/\/*.google.com\/*",
                "*:\/\/*.google.co.kr\/*",
                "*:\/\/*.google.co.jp\/*",
                "*:\/\/*.google.ca\/*",
                "*:\/\/*.bing.com\/*",
                "*:\/\/*.kckern.info\/*",
                "*:\/\/*.kckern.info\/*",
                "*:\/\/*.churchofjesuschrist.org\/search*"
            ],
            "js": [
                "linker.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}