Restore Link Card
A browser extension to restore OGP link cards on Twitter (X).
Что такое Restore Link Card?
Restore Link Card - это расширение Chrome, разработанное ろぼいん, и его основная функция - "A browser extension to restore OGP link cards on Twitter (X).".
Снимки экрана расширения
Скачать файл CRX расширения Restore Link Card
Скачайте файлы расширений Restore Link Card в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Twitter (X) removed headings from links in tweets (posts) on October 4, 2023. This extension restores the removed headlines and restores the previous ease of use.
Основная информация о расширении
Название | Restore Link Card |
ID | ifgokfhnpkmpjgjiimciofkebopknkli |
Официальный URL | https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli |
Описание | A browser extension to restore OGP link cards on Twitter (X). |
Размер файла | 12.15 KB |
Количество установок | 570 |
Текущая Версия | 1.1.0 |
Последнее Обновление | 2023-10-06 |
Дата публикации | 2023-10-05 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | ろぼいん |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Robot-Inventor/restore-link-card |
URL страницы помощи | https://github.com/Robot-Inventor/restore-link-card |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Restore Link Card", "short_name": "RestoreLinkCard", "version": "1.1.0", "description": "A browser extension to restore OGP link cards on Twitter (X).", "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "loader.js" ] } ], "web_accessible_resources": [ { "resources": [ "main.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ] } ] } |