SG Legal Citation Extension

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

Qu'est-ce que SG Legal Citation Extension ?

SG Legal Citation Extension est une extension Chrome développée par eugbyte, et sa fonction principale est "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension SG Legal Citation Extension

Téléchargez les fichiers d'extension SG Legal Citation Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
URL Officiel https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Description This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Taille du Fichier 69.44 KB
Nombre d'Installations 77
Version Actuelle 2.1.1
Dernière Mise à Jour 2023-10-01
Date de Publication 2021-05-16
Évaluation 1.00/5 Total 1 Évaluations
Développeur eugbyte
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/eugbyte/legal-cite-ext
URL de la Page d'Aide https://github.com/eugbyte/legal-cite-ext
Langues Prises en Charge 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"
    ]
}