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 с друзьями, чтобы легко установить расширения 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. Основная информация о расширении
| Название | |
| 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"
]
} | |