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
Eメール [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
        }
    ]
}