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 eugbyte द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SG Legal Citation Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |