Salesforce Trailhead Quiz Extractor
Show quiz and options in plain text format in a Salesforce Trailhead unit
Co to jest Salesforce Trailhead Quiz Extractor?
Salesforce Trailhead Quiz Extractor to rozszerzenie Chrome opracowane przez Shun Kosaka, a jego główną funkcją jest „Show quiz and options in plain text format in a Salesforce Trailhead unit”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Salesforce Trailhead Quiz Extractor
Pobierz pliki rozszerzeń Salesforce Trailhead Quiz Extractor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jjnkbikhfkdfjbgleofnnelcgclcndln |
| Oficjalny URL | https://chromewebstore.google.com/detail/salesforce-trailhead-quiz/jjnkbikhfkdfjbgleofnnelcgclcndln |
| Opis | Show quiz and options in plain text format in a Salesforce Trailhead unit |
| Rozmiar pliku | 114 KB |
| Liczba instalacji | 133 |
| Aktualna Wersja | 0.0.2 |
| Ostatnia Aktualizacja | 2018-11-14 |
| Data Publikacji | 2018-11-14 |
| Deweloper | Shun Kosaka |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/shunkosa/trailhead-quiz-chrome-extension |
| Obsługiwane Języki | 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"
}
]
} | |