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 là gì?

SG Legal Citation Extension là một tiện ích mở rộng Chrome được phát triển bởi eugbyte, và tính năng chính của nó là "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SG Legal Citation Extension

Tải xuống các tệp mở rộng SG Legal Citation Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
URL Chính Thức https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Mô tả This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Kích Thước Tệp 69.44 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 2.1.1
Cập Nhật Lần Cuối 2023-10-01
Ngày Phát Hành 2021-05-16
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển eugbyte
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/eugbyte/legal-cite-ext
URL Trang Trợ Giúp https://github.com/eugbyte/legal-cite-ext
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}