SharePoint Quicklinks
Useful SharePoint Quicklinks & Custom Links
Τι είναι το SharePoint Quicklinks;
Το SharePoint Quicklinks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον spfx-app.dev, και η κύρια λειτουργία του είναι "Useful SharePoint Quicklinks & Custom Links".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SharePoint Quicklinks
Λήψη αρχείων επέκτασης SharePoint Quicklinks σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension displays useful URLs on a SharePoint online site, which are applied to the currently visited site/page. Additionally, you can store your own URLs. This extension offers various quick links to SharePoint, such as site contents, site settings, site permissions, etc. This saves a lot of "clicks". For me as a SharePoint developer and all other SharePoint developers, some URLs are of course also very useful for SPFx development. Therefore, in addition to the "normal" `loadSPFx=true` URL parameters (with which you can test the SPFx WebParts on the current page), there is also the option of loading an SPFx Application Customizer. For this purpose, the App Id is requested (prompt dialog) as soon as you click on the URL. You can use the placeholders `{webappurl}`, `{weburl}`, and `{pageurl}`. Only links that have been "enabled" by the user will be displayed. The placeholder `{pageurl}` is replaced by the current (SharePoint) page URL. If you are not on a page, the links are not displayed.
Βασικές Πληροφορίες Επέκτασης
Όνομα | SharePoint Quicklinks |
ID | ehmphjkdhndbdpfhhckemmhapfahlbhe |
Επίσημο URL | https://chromewebstore.google.com/detail/sharepoint-quicklinks/ehmphjkdhndbdpfhhckemmhapfahlbhe |
Περιγραφή | Useful SharePoint Quicklinks & Custom Links |
Μέγεθος Αρχείου | 681 KB |
Αριθμός Εγκαταστάσεων | 197 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2023-09-14 |
Ημερομηνία Δημοσίευσης | 2022-09-27 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | spfx-app.dev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://spfx-app.dev |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SharePoint Quicklinks", "version": "1.0.1", "description": "Useful SharePoint Quicklinks & Custom Links", "manifest_version": 3, "author": "spfx-app.dev", "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "storage", "tabs" ], "options_ui": { "page": "www\/index.html#\/options", "open_in_tab": false }, "action": { "default_popup": "www\/index.html#\/popup", "default_icon": "icons\/icon-128x128.png", "default_title": "SharePoint Quicklinks" }, "background": { "service_worker": "background.js" }, "short_name": "SharePoint Quicklinks" } |