SG Legal Citation Extension

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

O que é SG Legal Citation Extension?

SG Legal Citation Extension é uma extensão do Chrome desenvolvida por eugbyte, e sua principal característica é "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SG Legal Citation Extension

Baixe arquivos de extensão SG Legal Citation Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
URL Oficial https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Descrição This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Tamanho do Arquivo 69.44 KB
Contagem de Instalações 77
Versão Atual 2.1.1
Última Atualização 2023-10-01
Data de Publicação 2021-05-16
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor eugbyte
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/eugbyte/legal-cite-ext
URL da Página de Ajuda https://github.com/eugbyte/legal-cite-ext
Idiomas Suportados 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"
    ]
}