Bible Previewer

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

Bible Previewer क्या है?

Bible Previewer Cody द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turns every bible verse into a link you can hover to see the contents of the verse."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bible Previewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}