Scripture Links

Create links to verses and paragraphs on lds.org

Was ist Scripture Links?

Scripture Links ist eine Chrome-Erweiterung, die von stoutsuidae entwickelt wurde, und ihr Hauptmerkmal ist "Create links to verses and paragraphs on lds.org".

Erweiterungsscreenshots

screenshot

Scripture Links-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scripture Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension will allow you to easily share scriptures and conference talks from lds.org.  Just right click on the verse or paragraph you want to share, select Create Link from the menu and now you can paste a link to that specific text anywhere you want.  This extension is in no way affiliated with www.lds.org or The Church of Jesus Christ of Latter Day Saints.

Version 1.2.0 - Can create links in church magazines and teachings of the prophets.
Version 1.1.0 - Can highlight multiple verses or paragraphs
Version 1.0.0 - Can create links for scriptures and general conference talks                    

Grundlegende Informationen zur Erweiterung

Name Scripture Links Scripture Links
ID kljcchnjihlaeephonmgadhdlbmaehlf
Offizielle URL https://chrome.google.com/webstore/detail/scripture-links/kljcchnjihlaeephonmgadhdlbmaehlf
Beschreibung Create links to verses and paragraphs on lds.org
Dateigröße 9.85 KB
Installationsanzahl 155
Aktuelle Version 1.2.0
Letztes Update 2015-10-02
Veröffentlichungsdatum 2015-10-02
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler stoutsuidae
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scripture Links",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "Create links to verses and paragraphs on lds.org",
    "icons": {
        "128": "Scripture_Bookmark.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.lds.org\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "page": "background.html"
    }
}