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.
扩展基本信息
名称 | SG Legal Citation Extension |
ID | icnheflkhplbgpodpoefdkncioaonhaj |
官方URL | 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" ] } |