Bible Previewer

Turns every bible verse into a link you can hover to see the contents of the verse.

Bible Previewer là gì?

Bible Previewer là một tiện ích mở rộng Chrome được phát triển bởi Cody, và tính năng chính của nó là "Turns every bible verse into a link you can hover to see the contents of the verse.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Bible Previewer 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

                        Easily view the bible verses referenced in an article, without ever having to leave!
Simply hover over the link to open a popup containing the verse in any web page, or click on the link to go to the verse on bibles.org. You can also change the language and translation of the popup.                    

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

Tên Bible Previewer Bible Previewer
ID khknjdjihianlbkkbpmoemlkphkeaddi
URL Chính Thức https://chromewebstore.google.com/detail/bible-previewer/khknjdjihianlbkkbpmoemlkphkeaddi
Mô tả Turns every bible verse into a link you can hover to see the contents of the verse.
Kích Thước Tệp 269 KB
Số Lần Cài Đặt 281
Phiên Bản Hiện Tại 1.4.0
Cập Nhật Lần Cuối 2022-06-21
Ngày Phát Hành 2019-09-16
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Cody
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,
    "name": "Bible Previewer",
    "short_name": "BiblePreview",
    "author": "Cody Guldner",
    "description": "Turns every bible verse into a link you can hover to see the contents of the verse.",
    "version": "1.4.0",
    "icons": {
        "16": "icons\/bible16.png",
        "32": "icons\/bible32.png",
        "64": "icons\/bible64.png",
        "128": "icons\/bible128.png"
    },
    "permissions": [
        "https:\/\/bibles.org\/v2\/",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "icons\/bible16.png",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "js\/*.js.map"
    ],
    "content_scripts": [
        {
            "css": [
                "css\/biblePreviewer.css"
            ],
            "js": [
                "js\/biblePreviewer.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ]
}