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.…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SG Legal Citation Extension
قم بتنزيل ملفات الامتداد SG Legal Citation Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" ] } |