Salesforce Trailhead Quiz Extractor

Show quiz and options in plain text format in a Salesforce Trailhead unit

Was ist Salesforce Trailhead Quiz Extractor?

Salesforce Trailhead Quiz Extractor ist eine Chrome-Erweiterung, die von Shun Kosaka entwickelt wurde, und ihr Hauptmerkmal ist "Show quiz and options in plain text format in a Salesforce Trailhead unit".

Erweiterungsscreenshots

screenshot

Salesforce Trailhead Quiz Extractor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Salesforce Trailhead Quiz Extractor-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

                                            

Grundlegende Informationen zur Erweiterung

Name Salesforce Trailhead Quiz Extractor Salesforce Trailhead Quiz Extractor
ID jjnkbikhfkdfjbgleofnnelcgclcndln
Offizielle URL https://chromewebstore.google.com/detail/salesforce-trailhead-quiz/jjnkbikhfkdfjbgleofnnelcgclcndln
Beschreibung Show quiz and options in plain text format in a Salesforce Trailhead unit
Dateigröße 114 KB
Installationsanzahl 133
Aktuelle Version 0.0.2
Letztes Update 2018-11-14
Veröffentlichungsdatum 2018-11-14
Entwickler Shun Kosaka
Zahlungsart free
Erweiterungswebsite https://github.com/shunkosa/trailhead-quiz-chrome-extension
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Trailhead Quiz Extractor",
    "version": "0.0.2",
    "description": "Show quiz and options in plain text format in a Salesforce Trailhead unit",
    "author": "Shun Kosaka",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "https:\/\/trailhead.salesforce.com\/*"
    ],
    "page_action": {
        "default_title": "Trailhead Quiz",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trailhead.salesforce.com\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}