Autoviewed
Mark as viewed files that aren't worth reviewing in your Github pull requests
Что такое Autoviewed?
Autoviewed - это расширение Chrome, разработанное luismahou, и его основная функция - "Mark as viewed files that aren't worth reviewing in your Github pull requests".
Снимки экрана расширения
Скачать файл CRX расширения Autoviewed
Скачайте файлы расширений Autoviewed в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
I know, I know, you shouldn't have auto-generated files in your git repository, but you know, sometimes you do 😄. This extension will mark as viewed those files automatically without human intervention 🎉 Основная информация о расширении
| Название | |
| ID | occcjmolphcfebdeichmoflmfgeefjef |
| Официальный URL | https://chromewebstore.google.com/detail/autoviewed/occcjmolphcfebdeichmoflmfgeefjef |
| Описание | Mark as viewed files that aren't worth reviewing in your Github pull requests |
| Размер файла | 235 KB |
| Количество установок | 37 |
| Текущая Версия | 1.2.0 |
| Последнее Обновление | 2022-02-15 |
| Дата публикации | 2020-07-02 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | luismahou |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Luismahou/autoviewed |
| URL страницы помощи | https://github.com/Luismahou/autoviewed/issues |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Autoviewed",
"version": "1.2.0",
"description": "Mark as viewed files that aren't worth reviewing in your Github pull requests",
"icons": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png",
"256": "images\/icon256.png",
"512": "images\/icon512.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/pull\/*"
],
"js": [
"content-script.js"
]
}
],
"action": {
"default_title": "Autoviewed",
"default_icon": "images\/icon48.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"permissions": [
"declarativeContent",
"storage"
]
} | |