SG Legal Citation Extension

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

What is SG Legal Citation Extension?

SG Legal Citation Extension is a Chrome extension developed by eugbyte, and its main feature is "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Extension Screenshots

screenshot
screenshot

Download SG Legal Citation Extension Extension CRX File

Download SG Legal Citation Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
Official URL 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.…
File Size 69.44 KB
Installation Count 77
Current Version 2.1.1
Last Updated 2023-10-01
Publish Date 2021-05-16
Rating 1.00/5 Total 1 Ratings
Developer eugbyte
Email [email protected]
Payment Type free
Extension Website https://github.com/eugbyte/legal-cite-ext
Help Page URL https://github.com/eugbyte/legal-cite-ext
Supported Languages 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"
    ]
}