GitHub Favorites
Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
Что такое GitHub Favorites?
GitHub Favorites - это расширение Chrome, разработанное hswolff, и его основная функция - "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Favorites
Скачайте файлы расширений GitHub Favorites в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This little extension for Google Chrome adds a Favorite button on GitHub repository pages right next to the Watch button. When you hit the Favorite button it adds that repo to the folder 'GitHub Favorites' in your Bookmarks. If you want to remove the bookmark just hit the Favorite button again! Full info available on the GitHub repository! https://github.com/hswolff/github-favorites
Основная информация о расширении
Название | |
ID | kfhdalekdpifhlndhcdnjgjoefiajefc |
Официальный URL | https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc |
Описание | Allows you to favorite GitHub repos to save for later instead of adding them to your watch list. |
Размер файла | 593 KB |
Количество установок | 201 |
Текущая Версия | 1.4 |
Последнее Обновление | 2014-02-22 |
Дата публикации | 2014-02-22 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | hswolff |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/hswolff/github-favorites |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Favorites", "version": "1.4", "description": "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2, "web_accessible_resources": [ "script.js" ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "bookmarks", "https:\/\/github.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*.com\/blog*", "*.com\/explore*", "*.com\/settings*", "*.com\/inbox*", "*.com\/repositories*", "*.com\/popular*" ], "js": [ "script.js" ] } ] } |