Giki
This is Chrome Extension of a micro blogging platform https://giki.app to enable blogging anytime and anywhere from Chrome.
Что такое Giki?
Giki - это расширение Chrome, разработанное Minghe, и его основная функция - "This is Chrome Extension of a micro blogging platform https://giki.app to enable blogging anytime and anywhere from Chrome.".
Снимки экрана расширения
Скачать файл CRX расширения Giki
Скачайте файлы расширений Giki в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Catch fleeting thoughts and ideas, and write them down with Giki. Основная информация о расширении
| Название | |
| ID | hcjaennlplpppgfolnagejnpcmbhdjba |
| Официальный URL | https://chromewebstore.google.com/detail/giki/hcjaennlplpppgfolnagejnpcmbhdjba |
| Описание | This is Chrome Extension of a micro blogging platform https://giki.app to enable blogging anytime and anywhere from Chrome. |
| Размер файла | 223 KB |
| Количество установок | 76 |
| Текущая Версия | 3.3.0 |
| Последнее Обновление | 2021-01-07 |
| Дата публикации | 2020-06-09 |
| Рейтинг | 5.00/5 Всего 7 оценок |
| Разработчик | Minghe |
| Электронная почта | [email protected] |
| Тип оплаты | in_app |
| Официальный сайт расширения | https://giki.app |
| URL страницы помощи | https://giki.app |
| Поддерживаемые языки | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Giki",
"short_name": "Giki",
"description": "This is Chrome Extension of a micro blogging platform https:\/\/giki.app to enable blogging anytime and anywhere from Chrome.",
"version": "3.3.0",
"author": "Minghe Huang ([email protected])",
"icons": {
"16": "images\/16x16.png",
"48": "images\/48x48.png",
"128": "images\/128x128.png"
},
"permissions": [
"notifications",
"contextMenus",
"storage",
"*:\/\/*.iiiii.li\/*",
"*:\/\/*.giki.app\/*",
"https:\/\/www.google-analytics.com\/"
],
"background": {
"page": "background.html"
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/giki.app\/status*"
],
"js": [
"dist\/content.bundle.js"
],
"run_at": "document_end"
}
],
"homepage_url": "https:\/\/giki.app"
} | |