Save as Gist
Save notes and webpage information as private gists.
Что такое Save as Gist?
Save as Gist - это расширение Chrome, разработанное nick.vanexan, и его основная функция - "Save notes and webpage information as private gists.".
Снимки экрана расширения
Скачать файл CRX расширения Save as Gist
Скачайте файлы расширений Save as Gist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This allows you to save a note to your private gists on GitHub. If you are on a webpage and highlight certain text, it will pre-populate your note with that text.
Основная информация о расширении
Название | Save as Gist |
ID | bkdmkcpliolodfhpndnocfpglldmeeop |
Официальный URL | https://chromewebstore.google.com/detail/save-as-gist/bkdmkcpliolodfhpndnocfpglldmeeop |
Описание | Save notes and webpage information as private gists. |
Размер файла | 14.54 KB |
Количество установок | 79 |
Текущая Версия | 0.0.4 |
Последнее Обновление | 2018-04-18 |
Дата публикации | 2018-04-17 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | nick.vanexan |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Save as Gist", "version": "0.0.4", "description": "Save notes and webpage information as private gists.", "permissions": [ "storage", "identity", "activeTab", "https:\/\/api.github.com\/*", "https:\/\/github.com\/*" ], "background": { "scripts": [ "background.js" ] }, "manifest_version": 2, "browser_action": { "default_title": "Create new gist", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |