SG Legal Citation Extension

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

¿Qué es SG Legal Citation Extension?

SG Legal Citation Extension es una extensión de Chrome desarrollada por eugbyte, y su función principal es "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión SG Legal Citation Extension

Descarga archivos de extensión SG Legal Citation Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
URL Oficial https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Descripción This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Tamaño del Archivo 69.44 KB
Cantidad de Instalaciones 77
Versión Actual 2.1.1
Última Actualización 2023-10-01
Fecha de Publicación 2021-05-16
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador eugbyte
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/eugbyte/legal-cite-ext
URL de la Página de Ayuda https://github.com/eugbyte/legal-cite-ext
Idiomas Soportados 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"
    ]
}