SAP Addon
Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira
SAP Addon là gì?
SAP Addon là một tiện ích mở rộng Chrome được phát triển bởi Niko Lockenvitz, và tính năng chính của nó là "Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SAP Addon
Tải xuống các tệp mở rộng SAP Addon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extensions improves the user experience on SAP webpages, e.g. by logging you in automatically (GitHub & Sharepoint) or replacing user IDs in GitHub with names. Note that this extension is neither created nor maintained by SAP. Find up-to-date documentation on https://nikolockenvitz.github.io/sap-addon/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SAP Addon |
ID | ccjpkhcdklddbfpcboffbeihonalpjkc |
URL Chính Thức | https://chromewebstore.google.com/detail/sap-addon/ccjpkhcdklddbfpcboffbeihonalpjkc |
Mô tả | Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira |
Kích Thước Tệp | 53.12 KB |
Số Lần Cài Đặt | 777 |
Phiên Bản Hiện Tại | 1.22.4 |
Cập Nhật Lần Cuối | 2024-02-27 |
Ngày Phát Hành | 2020-05-14 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Niko Lockenvitz |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/nikolockenvitz/sap-addon |
URL Trang Trợ Giúp | https://github.com/nikolockenvitz/sap-addon/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SAP Addon", "version": "1.22.4", "description": "Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira", "icons": { "48": "icons\/icon48.png", "96": "icons\/icon96.png", "128": "icons\/icon128-96.png" }, "content_scripts": [ { "matches": [ "*:\/\/github.wdf.sap.corp\/*", "*:\/\/github.tools.sap\/*" ], "js": [ "utils\/browser-setup.js", "utils\/storage.js", "utils\/dom-observer.js", "utils\/option-helper.js", "utils\/dom-helper.js", "content_scripts\/github\/config.js", "content_scripts\/github\/sign-in.js", "content_scripts\/github\/hide-notice-box.js", "content_scripts\/github\/username.js", "content_scripts\/github\/main.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/sap-my.sharepoint.com\/*", "*:\/\/login.microsoftonline.com\/*" ], "js": [ "utils\/browser-setup.js", "utils\/storage.js", "utils\/dom-observer.js", "utils\/option-helper.js", "utils\/dom-helper.js", "content_scripts\/sharepoint.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "declarativeNetRequestWithHostAccess", "scripting" ], "host_permissions": [ "*:\/\/fiorilaunchpad.sap.com\/sap\/fiori\/lunchmenu\/*", "*:\/\/github.wdf.sap.corp\/*", "*:\/\/github.tools.sap\/*" ], "optional_host_permissions": [ "*:\/\/sap.stackenterprise.co\/*", "*:\/\/app.mural.co\/*", "*:\/\/github.concur.com\/*", "*:\/\/jira.tools.sap\/*", "*:\/\/app.pluralsight.com\/*" ], "background": { "service_worker": "background_scripts\/chrome-background.js" }, "action": { "default_icon": "icons\/icon48.png", "default_title": "SAP Addon", "default_popup": "popup\/popup.html" } } |