SAP Addon
Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira
Что такое SAP Addon?
SAP Addon - это расширение Chrome, разработанное Niko Lockenvitz, и его основная функция - "Extension for SAP internal webpages: GitHub, Fiori Launchpad, Sharepoint, Jira".
Снимки экрана расширения
Скачать файл CRX расширения SAP Addon
Скачайте файлы расширений 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" } } |