SG Legal Citation Extension

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

Τι είναι το SG Legal Citation Extension;

Το SG Legal Citation Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον eugbyte, και η κύρια λειτουργία του είναι "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SG Legal Citation Extension

Λήψη αρχείων επέκτασης SG Legal Citation Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SG Legal Citation Extension SG Legal Citation Extension
ID icnheflkhplbgpodpoefdkncioaonhaj
Επίσημο URL https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj
Περιγραφή This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Μέγεθος Αρχείου 69.44 KB
Αριθμός Εγκαταστάσεων 77
Τρέχουσα Έκδοση 2.1.1
Τελευταία Ενημέρωση 2023-10-01
Ημερομηνία Δημοσίευσης 2021-05-16
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής eugbyte
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/eugbyte/legal-cite-ext
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/eugbyte/legal-cite-ext
Υποστηριζόμενες Γλώσσες 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"
    ]
}