PronounDB
A browser extension that lets people know how to refer to each other on various places of the Internet
Что такое PronounDB?
PronounDB - это расширение Chrome, разработанное https://pronoundb.org, и его основная функция - "A browser extension that lets people know how to refer to each other on various places of the Internet".
Снимки экрана расширения
Скачать файл CRX расширения PronounDB
Скачайте файлы расширений PronounDB в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
PronounDB is a browser extension that helps people know each other's pronouns easily and instantly. Whether hanging out on a Twitch chat, or on any of the supported platforms, PronounDB will make your life easier.
Plus, PronounDB is entirely open-source (BSD-3-Clause) at https://github.com/cyyynthia/pronoundb.org! Основная информация о расширении
| Название | |
| ID | nblkbiljcjfemkfjnhoobnojjgjdmknf |
| Официальный URL | https://chromewebstore.google.com/detail/pronoundb/nblkbiljcjfemkfjnhoobnojjgjdmknf |
| Описание | A browser extension that lets people know how to refer to each other on various places of the Internet |
| Размер файла | 128 KB |
| Количество установок | 3,667 |
| Текущая Версия | 0.14.1 |
| Последнее Обновление | 2023-06-03 |
| Дата публикации | 2020-12-19 |
| Рейтинг | 4.50/5 Всего 14 оценок |
| Разработчик | https://pronoundb.org |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://pronoundb.org |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "PronounDB",
"description": "A browser extension that lets people know how to refer to each other on various places of the Internet",
"version": "0.14.1",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/*.pronoundb.org\/*"
],
"action": {
"default_popup": "popup.html"
},
"content_security_policy": {
"extension_pages": "default-src 'self'; connect-src https:\/\/pronoundb.org;"
},
"background": {
"service_worker": "assets\/worker-d5d1a86d.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"assets\/wrapper-6bf10a51.js"
],
"matches": [
"https:\/\/*.discord.com\/*",
"https:\/\/*.github.com\/*",
"https:\/\/*.modrinth.com\/*",
"https:\/\/*.twitch.tv\/*",
"https:\/\/*.twitter.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/extension-2be14f4c.js",
"assets\/runtime-234878f2.js",
"assets\/index-7e0276a3.js"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |