Twitter UV
Browser Extension which enhances Twitter with Urbit Visor integration.
Что такое Twitter UV?
Twitter UV - это расширение Chrome, разработанное dcSpark, и его основная функция - "Browser Extension which enhances Twitter with Urbit Visor integration.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter UV
Скачайте файлы расширений Twitter UV в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Twitter UV is a web extension which bridges Twitter and Urbit. It allows users to easily share tweets and unroll whole threads at the click of a button directly onto their ships for sharing with others or archival purposes. Основная информация о расширении
| Название | |
| ID | dfidmeghmgfhhflhfopoeinniomenjlf |
| Официальный URL | https://chromewebstore.google.com/detail/twitter-uv/dfidmeghmgfhhflhfopoeinniomenjlf |
| Описание | Browser Extension which enhances Twitter with Urbit Visor integration. |
| Размер файла | 253 KB |
| Количество установок | 59 |
| Текущая Версия | 0.2.2 |
| Последнее Обновление | 2022-04-21 |
| Дата публикации | 2022-01-28 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | dcSpark |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/dcSpark/twitter-uv |
| URL страницы политики конфиденциальности | https://dcspark.io/legal/privacy |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitter UV",
"version": "0.2.2",
"description": "Browser Extension which enhances Twitter with Urbit Visor integration.",
"manifest_version": 3,
"icons": {
"16": ".\/public\/images\/icon16.png",
"48": ".\/public\/images\/icon48.png",
"128": ".\/public\/images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.twitter.com\/*",
"*:\/\/twitter.com\/*",
"*:\/\/mobile.twitter.com\/*"
],
"js": [
"dev.js"
],
"css": [
"dev.css"
]
}
],
"action": {
"default_icons": {
"16": ".\/public\/images\/icon16.png",
"48": ".\/public\/images\/icon48.png",
"128": ".\/public\/images\/icon128.png"
},
"default_popup": ".\/popup.html",
"default_title": "Twitter UV"
},
"permissions": [],
"host_permissions": [
"*:\/\/www.twitter.com\/*",
"*:\/\/twitter.com\/*",
"*:\/\/mobile.twitter.com\/*"
]
} | |