Salesforce Trailhead Quiz Extractor
Show quiz and options in plain text format in a Salesforce Trailhead unit
Hvad er Salesforce Trailhead Quiz Extractor?
Salesforce Trailhead Quiz Extractor er en Chrome-udvidelse udviklet af Shun Kosaka, og dens hovedfunktion er "Show quiz and options in plain text format in a Salesforce Trailhead unit".
Udvidelsesskærmbilleder
Download Salesforce Trailhead Quiz Extractor-udvidelses-CRX-fil
Download Salesforce Trailhead Quiz Extractor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Grundlæggende oplysninger om udvidelsen
Navn | Salesforce Trailhead Quiz Extractor |
ID | jjnkbikhfkdfjbgleofnnelcgclcndln |
Officiel URL | https://chromewebstore.google.com/detail/salesforce-trailhead-quiz/jjnkbikhfkdfjbgleofnnelcgclcndln |
Beskrivelse | Show quiz and options in plain text format in a Salesforce Trailhead unit |
Filstørrelse | 114 KB |
Antal Installationer | 133 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2018-11-14 |
Udgivelsesdato | 2018-11-14 |
Udvikler | Shun Kosaka |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/shunkosa/trailhead-quiz-chrome-extension |
Understøttede Sprog | 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" } ] } |