SG Legal Citation Extension
This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…
Co je SG Legal Citation Extension?
SG Legal Citation Extension je rozšíření Chrome vyvinuté eugbyte, a jeho hlavní funkcí je „This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření SG Legal Citation Extension
Stáhněte si soubory rozšíření SG Legal Citation Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | SG Legal Citation Extension |
ID | icnheflkhplbgpodpoefdkncioaonhaj |
Oficiální URL | https://chromewebstore.google.com/detail/sg-legal-citation-extensi/icnheflkhplbgpodpoefdkncioaonhaj |
Popis | This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.… |
Velikost souboru | 69.44 KB |
Počet instalací | 77 |
Aktuální Verze | 2.1.1 |
Poslední Aktualizace | 2023-10-01 |
Datum Vydání | 2021-05-16 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | eugbyte |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/eugbyte/legal-cite-ext |
URL Stránky Nápovědy | https://github.com/eugbyte/legal-cite-ext |
Podporované Jazyky | 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" ] } |