Pluralsight
Quickly find the content you need from Pluralsight’s Skills, all within your web browser.
Qu'est-ce que Pluralsight ?
Pluralsight est une extension Chrome développée par Pluralsight, et sa fonction principale est "Quickly find the content you need from Pluralsight’s Skills, all within your web browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pluralsight
Téléchargez les fichiers d'extension Pluralsight au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ciiahnddlacbfcmcchnhfnoklmacglfh |
URL Officiel | https://chrome.google.com/webstore/detail/pluralsight/ciiahnddlacbfcmcchnhfnoklmacglfh |
Description | Quickly find the content you need from Pluralsight’s Skills, all within your web browser. |
Taille du Fichier | 54.37 KB |
Nombre d'Installations | 14,136 |
Version Actuelle | 1.8 |
Dernière Mise à Jour | 2020-08-05 |
Date de Publication | 2020-05-01 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Pluralsight |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://pluralsight.com |
URL de la Page d'Aide | https://help.pluralsight.com/help |
URL de la Page de Politique de Confidentialité | https://www.pluralsight.com/privacy |
Langues Prises en Charge | 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" ] } |