SPDX License Diff

Diff selected text against SPDX licenses

SPDX License Diff란 무엇입니까?

SPDX License Diff은(는) Alan Tse에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Diff selected text against SPDX licenses"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

SPDX License Diff 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}