SG Legal Citation Extension

This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…

Apa itu SG Legal Citation Extension?

SG Legal Citation Extension adalah ekstensi Chrome yang dikembangkan oleh eugbyte, dan fitur utamanya adalah "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi SG Legal Citation Extension

Unduh file ekstensi SG Legal Citation Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
URL Resmi https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Deskripsi This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Ukuran File 69.44 KB
Jumlah Instalasi 77
Versi Saat Ini 2.1.1
Terakhir Diperbarui 2023-10-01
Tanggal Publikasi 2021-05-16
Penilaian 1.00/5 Total 1 Penilaian
Pengembang eugbyte
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/eugbyte/legal-cite-ext
URL Halaman Bantuan https://github.com/eugbyte/legal-cite-ext
Bahasa yang Didukung 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"
    ]
}