Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Что такое Github Stars Manager?
Github Stars Manager - это расширение Chrome, разработанное Gabriel Godoy, и его основная функция - "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.".
Снимки экрана расширения
Скачать файл CRX расширения Github Stars Manager
Скачайте файлы расширений Github Stars Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. It uses storage.sync, so the tags you create will be synced to all your computers, and visible on Github.
Основная информация о расширении
Название | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
Официальный URL | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
Описание | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
Размер файла | 149 KB |
Количество установок | 245 |
Текущая Версия | 1.9 |
Последнее Обновление | 2018-05-23 |
Дата публикации | 2018-05-23 |
Рейтинг | 3.83/5 Всего 12 оценок |
Разработчик | Gabriel Godoy |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/gabrielgodoy/github-stars-manager |
URL страницы помощи | https://github.com/gabrielgodoy/github-stars-manager/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Stars Manager", "description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.", "version": "1.9", "browser_action": { "default_icon": "src\/assets\/images\/icons\/icon.png" }, "icons": { "16": "src\/assets\/images\/icons\/icon16.png", "48": "src\/assets\/images\/icons\/icon48.png", "128": "src\/assets\/images\/icons\/icon128.png" }, "permissions": [ "contextMenus", "bookmarks", "tabs", "activeTab", "storage" ], "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "dist\/content_script.js" ], "css": [ "dist\/main.css" ] } ] } |