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
官方網址 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
        }
    ]
}