SharePoint Quicklinks

Useful SharePoint Quicklinks & Custom Links

SharePoint Quicklinks란 무엇입니까?

SharePoint Quicklinks은(는) spfx-app.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Useful SharePoint Quicklinks & Custom Links"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SharePoint Quicklinks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
}