SG Legal Citation Extension
This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Cos'è SG Legal Citation Extension?
SG Legal Citation Extension è un'estensione di Chrome sviluppata da eugbyte, e la sua funzione principale è "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SG Legal Citation Extension
Scarica i file di estensione SG Legal Citation Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | SG Legal Citation Extension |
ID | icnheflkhplbgpodpoefdkncioaonhaj |
URL Ufficiale | https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj |
Descrizione | This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.… |
Dimensione del File | 69.44 KB |
Conteggio Installazioni | 77 |
Versione Corrente | 2.1.1 |
Ultimo Aggiornamento | 2023-10-01 |
Data di Pubblicazione | 2021-05-16 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | eugbyte |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/eugbyte/legal-cite-ext |
URL della Pagina di Aiuto | https://github.com/eugbyte/legal-cite-ext |
Lingue Supportate | 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" ] } |