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" } } |