GitHub Pages
Add a link to the GitHub-Page of a GitHub repository
Что такое GitHub Pages?
GitHub Pages - это расширение Chrome, разработанное Marco Rieger, и его основная функция - "Add a link to the GitHub-Page of a GitHub repository".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Pages
Скачайте файлы расширений GitHub Pages в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | opeajkladelglljdblcjgkiclppcbkae |
| Официальный URL | https://chromewebstore.google.com/detail/github-pages/opeajkladelglljdblcjgkiclppcbkae |
| Описание | Add a link to the GitHub-Page of a GitHub repository |
| Размер файла | 7.93 KB |
| Количество установок | 145 |
| Текущая Версия | 1.2.0 |
| Последнее Обновление | 2015-11-13 |
| Дата публикации | 2015-11-13 |
| Разработчик | Marco Rieger |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/ins0/chrome-gh-pages |
| URL страницы помощи | https://github.com/ins0/chrome-gh-pages/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Pages",
"version": "1.2.0",
"manifest_version": 2,
"description": "Add a link to the GitHub-Page of a GitHub repository",
"homepage_url": "https:\/\/github.com\/ins0\/chrome-gh-pages",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"permissions": [
"https:\/\/github.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/gh-pages.js"
]
}
]
} | |