Brill Text Tool

Brill Text Tool

Was ist Brill Text Tool?

Brill Text Tool ist eine Chrome-Erweiterung, die von BRILL entwickelt wurde, und ihr Hauptmerkmal ist "Brill Text Tool".

Erweiterungsscreenshots

screenshot

Brill Text Tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Brill Text Tool-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

                        The Brill Text Tool is a tool for the readers of Brill's Dead Sea Scrolls Electronic Library Biblical Texts. 

The tool allows readers of the Dead Sea Scrolls texts to look up information about the words of the text, such as translation, lemma, and morphology.

Simply double-click on a word to bring up a pop-up with information. Because this happens in the same browser window as the source text, you don’t lose context.                    

Grundlegende Informationen zur Erweiterung

Name Brill Text Tool Brill Text Tool
ID kpcoigbplckchlbbbkfpahhogfhkdjpp
Offizielle URL https://chrome.google.com/webstore/detail/brill-text-tool/kpcoigbplckchlbbbkfpahhogfhkdjpp
Beschreibung Brill Text Tool
Dateigröße 290 KB
Installationsanzahl 20
Aktuelle Version 0.9.5
Letztes Update 2019-04-18
Veröffentlichungsdatum 2019-04-18
Entwickler BRILL
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://referenceworks.brillonline.com/browse/dead-sea-scrolls-electronic-library-biblical-texts
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.9.5",
    "name": "Brill Text Tool",
    "short_name": "btt-app",
    "manifest_version": 2,
    "description": "Brill Text Tool",
    "browser_action": {
        "default_title": "BTT App"
    },
    "icons": {
        "128": "icons\/icon-large.png",
        "16": "icons\/icon-fav.png",
        "19": "icons\/icon-small.png",
        "256": "icons\/[email protected]",
        "32": "icons\/[email protected]",
        "38": "icons\/[email protected]",
        "48": "icons\/icon-medium.png",
        "96": "icons\/[email protected]"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/referenceworks.brillonline.com\/*",
                "http:\/\/referenceworks.brillonline.com\/*"
            ],
            "js": [
                "js\/bttApp.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus",
        "management",
        "tabs",
        "storage",
        "https:\/\/github.com\/*",
        "*:\/\/referenceworks.brillonline.com\/*"
    ],
    "content_security_policy": "default-src 'self'; script-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}