Salesforce Trailhead Quiz Extractor
Show quiz and options in plain text format in a Salesforce Trailhead unit
Co je Salesforce Trailhead Quiz Extractor?
Salesforce Trailhead Quiz Extractor je rozšíření Chrome vyvinuté Shun Kosaka, a jeho hlavní funkcí je „Show quiz and options in plain text format in a Salesforce Trailhead unit“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Salesforce Trailhead Quiz Extractor
Stáhněte si soubory rozšíření Salesforce Trailhead Quiz Extractor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Základní Informace o Rozšíření
Název | Salesforce Trailhead Quiz Extractor |
ID | jjnkbikhfkdfjbgleofnnelcgclcndln |
Oficiální URL | https://chromewebstore.google.com/detail/salesforce-trailhead-quiz/jjnkbikhfkdfjbgleofnnelcgclcndln |
Popis | Show quiz and options in plain text format in a Salesforce Trailhead unit |
Velikost souboru | 114 KB |
Počet instalací | 133 |
Aktuální Verze | 0.0.2 |
Poslední Aktualizace | 2018-11-14 |
Datum Vydání | 2018-11-14 |
Vývojář | Shun Kosaka |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/shunkosa/trailhead-quiz-chrome-extension |
Podporované Jazyky | 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" } ] } |