Bible Previewer

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

Τι είναι το Bible Previewer;

Το Bible Previewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cody, και η κύρια λειτουργία του είναι "Turns every bible verse into a link you can hover to see the contents of the verse.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bible Previewer

Λήψη αρχείων επέκτασης 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
        }
    ]
}