Salesforce Trailhead Quiz Extractor

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

Salesforce Trailhead Quiz Extractor क्या है?

Salesforce Trailhead Quiz Extractor Shun Kosaka द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show quiz and options in plain text format in a Salesforce Trailhead unit"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Trailhead Quiz Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                                            

एक्सटेंशन की मूल जानकारी

नाम Salesforce Trailhead Quiz Extractor Salesforce Trailhead Quiz Extractor
ID jjnkbikhfkdfjbgleofnnelcgclcndln
आधिकारिक URL https://chromewebstore.google.com/detail/salesforce-trailhead-quiz/jjnkbikhfkdfjbgleofnnelcgclcndln
विवरण Show quiz and options in plain text format in a Salesforce Trailhead unit
फ़ाइल का आकार 114 KB
स्थापना संख्या 133
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2018-11-14
प्रकाशन तिथि 2018-11-14
डेवलपर Shun Kosaka
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/shunkosa/trailhead-quiz-chrome-extension
समर्थित भाषाएँ 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"
        }
    ]
}