SG Legal Citation Extension

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

Was ist SG Legal Citation Extension?

SG Legal Citation Extension ist eine Chrome-Erweiterung, die von eugbyte entwickelt wurde, und ihr Hauptmerkmal ist "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Erweiterungsscreenshots

screenshot
screenshot

SG Legal Citation Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie SG Legal Citation Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
Offizielle URL https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Beschreibung This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Dateigröße 69.44 KB
Installationsanzahl 77
Aktuelle Version 2.1.1
Letztes Update 2023-10-01
Veröffentlichungsdatum 2021-05-16
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler eugbyte
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/eugbyte/legal-cite-ext
Hilfeseite URL https://github.com/eugbyte/legal-cite-ext
Unterstützte Sprachen 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"
    ]
}