SharePoint Quicklinks
Useful SharePoint Quicklinks & Custom Links
SharePoint Quicklinks क्या है?
SharePoint Quicklinks spfx-app.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Useful SharePoint Quicklinks & Custom Links"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SharePoint Quicklinks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |