Scripture Tips

A browser plugin that recognises references to scripture and converts those references into URL links.

Scripture Tips là gì?

Scripture Tips là một tiện ích mở rộng Chrome được phát triển bởi https://adonai-reigns.life, và tính năng chính của nó là "A browser plugin that recognises references to scripture and converts those references into URL links.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Scripture Tips

Tải xuống các tệp mở rộng Scripture Tips dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        When we discuss important matters, often we use references to scripture to expand or qualify our point. The reader then needs to find and read the scripture before they can decide what their response will be. 

So a writer kindly creates a hyperlink for the reader each time, but that is time consuming, and many people do not bother.

The plugin has two functions to help with that: 

When reading what someone else has written, the plugin automatically looks for anywhere that a book name, chapter and verse from the bible has been used and converts the pattern into a clickable link. So it saves us flipping through the thousands of pages of a holy book or copy/pasting the reference to search for it.

In a similar way, when we are writing to a reader, the plugin can convert all the references to hyperlinks before we send it to the reader. Then, everyone who reads the writing will be able to click the hyperlinks, even if they don't have the plugin installed on their browser.

By default, there are three online services supported: www.biblegateway.com, www.biblehub.com and blueletterbible.org. You can add your favourite websites by following the instructions in the Extension's Options.

Currently in Beta (testing and development) stage, works with bible references and English. Planned updates will support other scriptures and languages soon.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Scripture Tips Scripture Tips
ID kbkpchimkeckhgepgjgimeigoikldnde
URL Chính Thức https://chromewebstore.google.com/detail/scripture-tips/kbkpchimkeckhgepgjgimeigoikldnde
Mô tả A browser plugin that recognises references to scripture and converts those references into URL links.
Kích Thước Tệp 111 KB
Số Lần Cài Đặt 165
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2019-09-24
Ngày Phát Hành 2019-09-24
Nhà Phát Triển https://adonai-reigns.life
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0.1",
    "options_page": "options.html",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "*:\/\/*google.com\/*"
            ],
            "css": [
                "css\/content-scripts\/scripturetips.css"
            ],
            "js": [
                "js\/scripturetips\/Bible.js",
                "js\/scripturetips\/scripturetips.js",
                "js\/content-scripts\/jquery-3.4.1.min.js",
                "js\/content-scripts\/scripturetips.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "css\/content-scripts\/*.png"
    ]
}