SPDX License Diff
Diff selected text against SPDX licenses
什麼是SPDX License Diff?
SPDX License Diff是由Alan Tse開發的Chrome擴展程式,該擴展的主要功能是“Diff selected text against SPDX licenses”。
擴展截圖
下載SPDX License Diff擴展crx文件
下載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 |
ID | kfoadicmilbgnicoldjmccpaicejacdh |
官方網址 | 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\/*" ] } |