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

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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 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"
    }
}