SPDX License Diff

Diff selected text against SPDX licenses

SPDX License Diffคืออะไร?

SPDX License Diff เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alan Tse และคุณลักษณะหลักของมันคือ "Diff selected text against SPDX licenses"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SPDX License Diff

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

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

                        This open source extension creates a browser button in Chrome to compare selected text against the SPDX License List (https://spdx.org/licenses/). It will then show the closest matching license and provide a redline showing differences against the canonical SPDX license text. This can be useful when trying to identify an open source license or determining if it has been changed.

The SPDX License List is a list of commonly found licenses and exceptions used in free and open source and other collaborative software or documentation. The purpose of the SPDX License List is to enable easy and efficient identification of such licenses and exceptions in an SPDX document, in source files or elsewhere. The SPDX License List includes a standardized short identifier, full name, vetted license text including matching guidelines markup as appropriate, and a canonical permanent URL for each license and exception.

Released under GPL-3.0 (for now)

Release notes:
https://github.com/spdx/spdx-license-diff/releases                    

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

ชื่อ SPDX License Diff SPDX License Diff
ID kfoadicmilbgnicoldjmccpaicejacdh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/spdx-license-diff/kfoadicmilbgnicoldjmccpaicejacdh
คำอธิบาย Diff selected text against SPDX licenses
ขนาดไฟล์ 171 KB
จำนวนการติดตั้ง 202
เวอร์ชันปัจจุบัน 0.9.2
อัปเดตครั้งล่าสุด 2023-07-29
วันที่เผยแพร่ 2020-06-24
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Alan Tse
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/spdx/spdx-license-diff
URL หน้าช่วยเหลือ https://github.com/spdx/spdx-license-diff/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.9.2",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "32": "images\/spdx.png",
        "128": "images\/128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": "images\/spdx.png"
        }
    },
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "activeTab",
        "*:\/\/*.spdx.org\/*"
    ]
}