Github Issue Reactions
List a link of reactions on a github issue and pull request page
Что такое Github Issue Reactions?
Github Issue Reactions - это расширение Chrome, разработанное Lasse Norfeldt, и его основная функция - "List a link of reactions on a github issue and pull request page".
Снимки экрана расширения
Скачать файл CRX расширения Github Issue Reactions
Скачайте файлы расширений Github Issue Reactions в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Use it to get a quick overview of good comments in a long GitHub issue conversation. Repo to the extension can be found here: Github at Norfeldt/github-issue-reactions-browser-extension
Основная информация о расширении
Название | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
Официальный URL | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
Описание | List a link of reactions on a github issue and pull request page |
Размер файла | 74.39 KB |
Количество установок | 1,053 |
Текущая Версия | 2.4.4 |
Последнее Обновление | 2023-06-18 |
Дата публикации | 2022-01-10 |
Рейтинг | 4.33/5 Всего 3 оценок |
Разработчик | Lasse Norfeldt |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github Issue Reactions", "version": "2.4.4", "description": "List a link of reactions on a github issue and pull request page", "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png", "256": "icon_256.png" }, "host_permissions": [ "https:\/\/www.github.com\/", "http:\/\/www.github.com\/" ] } |