Pluralsight
Quickly find the content you need from Pluralsight’s Skills, all within your web browser.
Τι είναι το Pluralsight;
Το Pluralsight είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Pluralsight, και η κύρια λειτουργία του είναι "Quickly find the content you need from Pluralsight’s Skills, all within your web browser.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Pluralsight
Λήψη αρχείων επέκτασης Pluralsight σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ciiahnddlacbfcmcchnhfnoklmacglfh |
Επίσημο URL | https://chrome.google.com/webstore/detail/pluralsight/ciiahnddlacbfcmcchnhfnoklmacglfh |
Περιγραφή | Quickly find the content you need from Pluralsight’s Skills, all within your web browser. |
Μέγεθος Αρχείου | 54.37 KB |
Αριθμός Εγκαταστάσεων | 14,136 |
Τρέχουσα Έκδοση | 1.8 |
Τελευταία Ενημέρωση | 2020-08-05 |
Ημερομηνία Δημοσίευσης | 2020-05-01 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Pluralsight |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://pluralsight.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://help.pluralsight.com/help |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.pluralsight.com/privacy |
Υποστηριζόμενες Γλώσσες | 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" ] } |