Pluralsight
Quickly find the content you need from Pluralsight’s Skills, all within your web browser.
Was ist Pluralsight?
Pluralsight ist eine Chrome-Erweiterung, die von Pluralsight entwickelt wurde, und ihr Hauptmerkmal ist "Quickly find the content you need from Pluralsight’s Skills, all within your web browser.".
Erweiterungsscreenshots
Pluralsight-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pluralsight-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
Pluralsight’s Google Chrome extension allows you to quickly find the content you need from Pluralsight’s Skills, all within your web browser. With our extension, you can use Pluralsight’s search from within Google Chrome to get immediate access to content covering the most relevant and in-demand technologies, including cloud, mobile, security, IT, and data. You’ll get search results from our content library, including video courses, video course clips, paths, interactive courses, projects, and guides. Our extension also surfaces direct links to Pluralsight content search from relevant sites like Google and StackOverflow search results.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ciiahnddlacbfcmcchnhfnoklmacglfh |
Offizielle URL | https://chrome.google.com/webstore/detail/pluralsight/ciiahnddlacbfcmcchnhfnoklmacglfh |
Beschreibung | Quickly find the content you need from Pluralsight’s Skills, all within your web browser. |
Dateigröße | 54.37 KB |
Installationsanzahl | 14,136 |
Aktuelle Version | 1.8 |
Letztes Update | 2020-08-05 |
Veröffentlichungsdatum | 2020-05-01 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Pluralsight |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://pluralsight.com |
Hilfeseite URL | https://help.pluralsight.com/help |
URL der Datenschutzrichtlinien-Seite | https://www.pluralsight.com/privacy |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pluralsight", "description": "Quickly find the content you need from Pluralsight\u2019s Skills, all within your web browser.", "version": "1.8", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/app.pluralsight.com\/*", "https:\/\/pluralsight.com\/*", "https:\/\/www.pluralsight.com\/*", "*:\/\/www.google.com\/*", "*:\/\/google.com\/*", "*:\/\/stackoverflow.com\/questions\/*", "https:\/\/dev-portal.pluralsight.com\/*" ], "js": [ "js\/content.js" ], "all_frames": true } ], "background": { "scripts": [ "js\/vendor.js", "js\/background.js" ] }, "permissions": [ "storage", "contextMenus" ] } |