SG Legal Citation Extension

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

Vad är SG Legal Citation Extension?

SG Legal Citation Extension är en Chrome-tillägg utvecklad av eugbyte, och dess huvudfunktion är "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner SG Legal Citation Extension-förlängningens CRX-fil

Ladda ner SG Legal Citation Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
Officiell webbadress https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Beskrivning This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Filstorlek 69.44 KB
Antal Installationer 77
Aktuell Version 2.1.1
Senast Uppdaterad 2023-10-01
Publiceringsdatum 2021-05-16
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare eugbyte
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/eugbyte/legal-cite-ext
Hjälpsida URL https://github.com/eugbyte/legal-cite-ext
Stödda Språk 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"
    ]
}