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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}