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"
    ]
}