SG Legal Citation Extension
This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
什麼是SG Legal Citation Extension?
SG Legal Citation Extension是由eugbyte開發的Chrome擴展程式,該擴展的主要功能是“This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…”。
擴展截圖
下載SG Legal Citation Extension擴展crx文件
下載SG Legal Citation Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This web extension auto generates citations, when the user copies the text from the following Singapore legal websites:
1. https://sso.agc.gov.sg (statutes)
Project is open source at (https://github.com/eugbyte/legal-cite-ext), feel free to contribute. 擴展基本資訊
| 名稱 | |
| ID | icnheflkhplbgpodpoefdkncioaonhaj |
| 官方網址 | https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj |
| 簡介 | This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.… |
| 檔案大小 | 69.44 KB |
| 安裝次數 | 77 |
| 目前版本 | 2.1.1 |
| 更新時間 | 2023-10-01 |
| 上架時間 | 2021-05-16 |
| 評分 | 1.00/5 共 1 次評分 |
| 開發者 | eugbyte |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/eugbyte/legal-cite-ext |
| 說明頁面URL | https://github.com/eugbyte/legal-cite-ext |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SG Legal Citation Extension",
"version": "2.1.1",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"action": {
"default_popup": "index.html",
"default_title": "Open the popup",
"default_icon": "icons\/scroll.png"
},
"icons": {
"48": "icons\/scroll.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/sso.agc.gov.sg\/*"
],
"js": [
"browser-polyfill.js",
"content-scripts\/statutes\/index.js"
]
}
],
"background": {
"service_worker": "background-scripts\/index.js",
"type": "module"
},
"permissions": [
"contextMenus",
"clipboardWrite"
]
} | |