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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This web extension auto generates citations, when the user copies the text from the following Singapore legal websites: 1.…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SG Legal Citation Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}