SAP Addon
Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira
什么是SAP Addon?
SAP Addon是由Niko Lockenvitz开发的Chrome扩展程序,该扩展的主要功能是“Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira”。
扩展截图
下载SAP Addon扩展crx文件
下载SAP Addon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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/
扩展基本信息
名称 | SAP Addon |
ID | ccjpkhcdklddbfpcboffbeihonalpjkc |
官方URL | https://chromewebstore.google.com/detail/sap-addon/ccjpkhcdklddbfpcboffbeihonalpjkc |
简介 | Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira |
文件大小 | 53.12 KB |
安装次数 | 777 |
当前版本 | 1.22.4 |
更新时间 | 2024-02-27 |
上架时间 | 2020-05-14 |
评分 | 5.00/5 共1次评分 |
开发者 | Niko Lockenvitz |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/nikolockenvitz/sap-addon |
帮助页面URL | https://github.com/nikolockenvitz/sap-addon/issues |
支持的语言 | 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" } } |