Make GitHub Pages Full Width
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Что такое Make GitHub Pages Full Width?
Make GitHub Pages Full Width - это расширение Chrome, разработанное https://www.danskingdom.com, и его основная функция - "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".
Снимки экрана расширения
Скачать файл CRX расширения Make GitHub Pages Full Width
Скачайте файлы расширений Make GitHub Pages Full Width в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of your browser, rather than maxing out at the default ~900 pixels. This makes viewing code on GitHub much easier, as most developers have widescreen monitors. If the page fails to expand, simply refresh the page.
Основная информация о расширении
Название | Make GitHub Pages Full Width |
ID | dfpgjcidmobcpaoolhgchdcmdgenbaoa |
Официальный URL | https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa |
Описание | Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser. |
Размер файла | 5.43 KB |
Количество установок | 123 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-05-27 |
Дата публикации | 2014-05-27 |
Рейтинг | 2.75/5 Всего 4 оценок |
Разработчик | https://www.danskingdom.com |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Make GitHub Pages Full Width", "description": "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.", "version": "1.0", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*\/files*", "https:\/\/github.com\/*\/commit\/*", "https:\/\/github.com\/*\/blob\/*" ], "js": [ "MakeGitHubPullRequestCommitAndBlobPagesFullWidth.user.js" ] } ] } |