Paint GitHub
This adds canvas for drawing a picture and inserting them in GitHub comment boxes.
Что такое Paint GitHub?
Paint GitHub - это расширение Chrome, разработанное Mu-An Chiou, и его основная функция - "This adds canvas for drawing a picture and inserting them in GitHub comment boxes.".
Снимки экрана расширения
Скачать файл CRX расширения Paint GitHub
Скачайте файлы расширений Paint GitHub в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Injects a "Draw" panel to GitHub's comment area so you can draw a helpful picture to be included in the comment!
Основная информация о расширении
Название | Paint GitHub |
ID | dmcjbappfnlamankemdmmdjiecnclapl |
Официальный URL | https://chromewebstore.google.com/detail/paint-github/dmcjbappfnlamankemdmmdjiecnclapl |
Описание | This adds canvas for drawing a picture and inserting them in GitHub comment boxes. |
Размер файла | 34.1 KB |
Количество установок | 203 |
Текущая Версия | 0.3.0 |
Последнее Обновление | 2019-11-27 |
Дата публикации | 2019-11-26 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Mu-An Chiou |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paint GitHub", "short_name": "paint-github", "version": "0.3.0", "manifest_version": 2, "description": "This adds canvas for drawing a picture and inserting them in GitHub comment boxes.", "homepage_url": "http:\/\/github.com\/muan\/paint-github", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "inject.js" ] } ], "web_accessible_resources": [ "index.js", "node_modules\/changedpi\/src\/index.js", "paint-canvas-element.js" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |