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ファイルをダウンロード

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
Eメール [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"
    ]
}