SAP Note Enhancer

Adds Correction instruction highlighting to SAP Notes

SAP Note Enhancerคืออะไร?

SAP Note Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Guilherme Dellagustin และคุณลักษณะหลักของมันคือ "Adds Correction instruction highlighting to SAP Notes"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SAP Note Enhancer

ดาวน์โหลดไฟล์ส่วนขยาย SAP Note Enhancer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension enhances the visualization of correction instructions in SAP® Notes when viewed in the SAP® Marketplace.

The ABAP® portions of the correction instructions are highlighted and the background of insertions and deletions are shown in different colors.

This makes it easier to understand the involved code changes straight from the Note in the web.

Release Notes:
* Version 1.10.3
  - Fix for the last update (August/2016) of the ONE Support Launchpad.
    (highlighting of insertions and deletions)
* Version 1.10.2
  - Fix for the last update (August/2016) of the ONE Support Launchpad.
* Version 1.10.1
  - Created more specific "matches" for the script.
  - Fixed issue highlighting correction headers in ONE Support Launchpad.
* Version 1.10.0
  - Added support to ONE Support Launchpad.
* Version 1.9.0
  - Added link to pre-requisite CIs in the CIs' headers.
* Version 1.8.0
  - Added link to pre-requisite notes in the CIs' headers.
* Version 0.0.7
  - Added code highlighting for the view of individual deltas.
* Version 0.0.6
  - Updated to the last version of ABAPSyntaxHighlighter
    - Added several tokens such as operators and punctuation.
* Version 0.0.5
  - Updated prism core.
  - Solved the issue with <.
* Version 0.0.4
  - Adds missing keywords.
  - Fine tuning of colors to match the standard ABAP® Editor colors.
* Version 0.0.3
  - Adds support for highlighting CIs in the CI overview page.

For bug reporting and feature request visit the GitHub issues page.

This extension is powered by:
jQuery
Prism (prismjs)
ABAPSyntaxHighlighter

SAP® is/are the trademark(s) or registered trademark(s) of SAP SE in Germany and in several other countries.

ABAP® is/are the trademark(s) or registered trademark(s) of SAP SE in Germany and in several other countries.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SAP Note Enhancer SAP Note Enhancer
ID keibkcomemkcceddcddjdlncidohgedk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sap-note-enhancer/keibkcomemkcceddcddjdlncidohgedk
คำอธิบาย Adds Correction instruction highlighting to SAP Notes
ขนาดไฟล์ 45.77 KB
จำนวนการติดตั้ง 970
เวอร์ชันปัจจุบัน 1.10.3
อัปเดตครั้งล่าสุด 2016-08-24
วันที่เผยแพร่ 2016-08-24
คะแนน 5.00/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Guilherme Dellagustin
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dellagustin/SAP_Note_Enhancer
URL หน้าช่วยเหลือ https://github.com/dellagustin/SAP_Note_Enhancer/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/podStation/podStation/blob/master/docs/privacy-policy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SAP Note Enhancer",
    "short_name": "SAPNote Enh.",
    "description": "Adds Correction instruction highlighting to SAP Notes",
    "homepage_url": "https:\/\/github.com\/dellagustin\/SAP_Note_Enhancer",
    "icons": {
        "128": ".\/image\/icon128.png"
    },
    "version": "1.10.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.sap.corp\/*\/bc\/bsp\/sno\/ui\/main.do",
                "https:\/\/*.sap-ag.de\/*\/bc\/bsp\/sno\/ui\/main.do"
            ],
            "all_frames": true,
            "css": [
                "sap_note_enhancer.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "prismABAP.js",
                "string_operations.js",
                "common_ci_operations.js",
                "sap_note_enhancer.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.sap.corp\/*\/bc\/bsp\/spn\/corr_instr\/correction_instructions.*",
                "https:\/\/*.sap-ag.de\/*\/bc\/bsp\/spn\/corr_instr\/correction_instructions.*"
            ],
            "all_frames": true,
            "css": [
                "sap_note_enhancer.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "prismABAP.js",
                "string_operations.js",
                "common_ci_operations.js",
                "sap_ci_overview_enhancer.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.sap.corp\/*\/bc\/bsp\/spn\/corr_instr\/correction_detail.*",
                "https:\/\/*.sap-ag.de\/*\/bc\/bsp\/spn\/corr_instr\/correction_detail.*"
            ],
            "all_frames": true,
            "css": [
                "sap_note_enhancer.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "prismABAP.js",
                "string_operations.js",
                "sap_ci_detail_enhancer.js"
            ]
        },
        {
            "matches": [
                "https:\/\/launchpad.support.sap.com\/*"
            ],
            "all_frames": true,
            "css": [
                "sap_note_enhancer.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "prismABAP.js",
                "string_operations.js",
                "common_ci_operations.js",
                "sap_ci_launchpad_enhancer.js"
            ]
        }
    ]
}