SG Legal Citation Extension

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

Co to jest SG Legal Citation Extension?

SG Legal Citation Extension to rozszerzenie Chrome opracowane przez eugbyte, a jego główną funkcją jest „This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia SG Legal Citation Extension

Pobierz pliki rozszerzeń SG Legal Citation Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
Oficjalny URL https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Opis This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Rozmiar pliku 69.44 KB
Liczba instalacji 77
Aktualna Wersja 2.1.1
Ostatnia Aktualizacja 2023-10-01
Data Publikacji 2021-05-16
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper eugbyte
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/eugbyte/legal-cite-ext
Adres URL Strony Pomocy https://github.com/eugbyte/legal-cite-ext
Obsługiwane Języki 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"
    ]
}