Bible Previewer

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

什么是Bible Previewer?

Bible Previewer是由Cody开发的Chrome扩展程序,该扩展的主要功能是“Turns every bible verse into a link you can hover to see the contents of the verse.”。

扩展截图

screenshot
screenshot

下载Bible Previewer扩展crx文件

下载Bible Previewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Bible Previewer Bible Previewer
ID khknjdjihianlbkkbpmoemlkphkeaddi
官方URL https://chromewebstore.google.com/detail/bible-previewer/khknjdjihianlbkkbpmoemlkphkeaddi
简介 Turns every bible verse into a link you can hover to see the contents of the verse.
文件大小 269 KB
安装次数 281
当前版本 1.4.0
更新时间 2022-06-21
上架时间 2019-09-16
评分 4.83/5 共6次评分
开发者 Cody
电子邮箱 [email protected]
付费类型 free
支持的语言 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
        }
    ]
}