Project verses from bible.com

Project selected Bible verses (works for parallel as well) from YouVersion bible.com

Co je Project verses from bible.com?

Project verses from bible.com je rozšíření Chrome vyvinuté nmatei, a jeho hlavní funkcí je „Project selected Bible verses (works for parallel as well) from YouVersion bible.com“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Project verses from bible.com

Stáhněte si soubory rozšíření Project verses from bible.com ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension will help you project Bible verses in your Church, You decide which version to display and also can project parallel versions or in 2 different languages.

Requirements: 
- Install this extension
- visit https://my.bible.com/bible (or click on extension icon)
- new actions (💬, 🛠, ❔, 📌) should be visible in top/left corner
- for more features login on https://my.bible.com/

---
💠 Features & Usage

- 🔤 Project selected verses (+/- parallel text)
  - `Search` Book and Chapter
  - `Click` on verse number to display it on projector
  - `Up/Down/Left/Right` arrows to navigate to next/preview verses
  - `CTRL + Click` to add verse to selection (multi select)
  - `Shift + Click` to multi select between last selection
  - `ALT + Click` on verse number or Pinned reference, to force project window to be on top (in case is not visible)
  - `ESC` to show blank page (hide all selected verses)
  - `F11` to enter/exit fullscreen projector window (first focus it)
- 💬 Project `live text`
  - input any text to be projected
  - `CTRL + Enter` to project live text (inside textarea)
- 📌 List/Pin some verses (references)
  - 💾 Store verses (references) for future selection and project them faster
  - `Enter` to add one/more references (`,` or `;` as separator) in 'Pin verses' input 🔍
  - `Enter + Enter` to project added reference to List/Pin
  - `ALT + Click` on Reference - force project (on top)
  - `CTRL + Click` project all verses from pin (Mat 6:7-13)
  - 📝 `Edit All` to Copy/Paste/Edit multiple references
  - ➕ will pin current Reference if search input is empty
  - Search pin: 16, 2-4, 2:4, 2 4, `+Enter` - pin current chapter or verses
  - ↕ drag & drop to reorder verses
  - 🖱 Context menu (right click) for more actions inside pin list
    - 📄 Copy all pin verses to clipboard
    - ✖ Clear all

For more details or Advanced features check https://github.com/nmatei/chrome-bible-utilities                    

Základní Informace o Rozšíření

Název Project verses from bible.com Project verses from bible.com
ID fklnkmnlobkpoiifnbnemdpamheoanpj
Oficiální URL https://chromewebstore.google.com/detail/project-verses-from-bible/fklnkmnlobkpoiifnbnemdpamheoanpj
Popis Project selected Bible verses (works for parallel as well) from YouVersion bible.com
Velikost souboru 98.69 KB
Počet instalací 723
Aktuální Verze 1.24.0
Poslední Aktualizace 2024-02-23
Datum Vydání 2023-01-08
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář nmatei
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/nmatei/chrome-bible-utilities
URL Stránky Nápovědy https://github.com/nmatei/chrome-bible-utilities/issues
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Project verses from bible.com",
    "version": "1.24.0",
    "description": "Project selected Bible verses (works for parallel as well) from YouVersion bible.com",
    "manifest_version": 3,
    "author": "Matei Nicolae",
    "background": {
        "service_worker": "views\/background.js"
    },
    "action": [],
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/my.bible.com\/bible*",
        "https:\/\/my.bible.com\/*\/bible*",
        "https:\/\/www.bible.com\/bible*",
        "https:\/\/www.bible.com\/*\/bible*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.bible.com\/bible*",
                "https:\/\/my.bible.com\/*\/bible*",
                "https:\/\/www.bible.com\/bible*",
                "https:\/\/www.bible.com\/*\/bible*"
            ],
            "js": [
                "views\/common\/utilities.js",
                "views\/common\/tooltip\/tooltip.js",
                "views\/common\/latinizeText.js",
                "views\/common\/bible-mappings.js",
                "views\/common\/cache-verses.js",
                "views\/bibles\/mappings.js",
                "views\/main\/runtime-messages.js",
                "views\/main\/actions\/settings.js",
                "views\/main\/actions\/help.js",
                "views\/main\/actions\/pin-verses.js",
                "views\/main\/actions.js",
                "views\/main\/index.js"
            ],
            "css": [
                "views\/common\/tooltip\/tooltip.css",
                "views\/common\/CustomScrollChrome.css",
                "views\/bibles\/colors.css",
                "views\/main\/actions.css",
                "views\/bibles\/bible.com\/common-overrides.css"
            ]
        },
        {
            "matches": [
                "https:\/\/my.bible.com\/bible*",
                "https:\/\/my.bible.com\/*\/bible*"
            ],
            "css": [
                "views\/bibles\/my.bible.com\/overrides.css"
            ],
            "js": [
                "views\/bibles\/bible.com\/common.js",
                "views\/bibles\/my.bible.com\/selectors.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.bible.com\/bible*",
                "https:\/\/www.bible.com\/*\/bible*"
            ],
            "css": [
                "views\/bibles\/bible.com\/overrides.css"
            ],
            "js": [
                "views\/bibles\/bible.com\/common.js",
                "views\/bibles\/bible.com\/selectors.js"
            ]
        }
    ],
    "icons": {
        "16": "views\/icons\/icon-16.png",
        "48": "views\/icons\/icon-48.png",
        "128": "views\/icons\/icon-128.png"
    }
}