Manager for Telegra.ph
Telegraph Authorisation tool
Что такое Manager for Telegra.ph?
Manager for Telegra.ph - это расширение Chrome, разработанное https://andreitazetdinov.com, и его основная функция - "Telegraph Authorisation tool".
Снимки экрана расширения
Скачать файл CRX расширения Manager for Telegra.ph
Скачайте файлы расширений Manager for Telegra.ph в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Telegraph blogs managing tool If you decided to use Telegraph for your next blog then this tool is absolute must have for you. You can easily auth into telegra.ph blogging system and copy and paste your articles into Telegram channel. No Ads. No data collecting. I made this tool for myself and also for you. Enjoy.
Основная информация о расширении
Название | |
ID | mkpbnggpapchbnjbgjkanokmdgblcphd |
Официальный URL | https://chromewebstore.google.com/detail/manager-for-telegraph/mkpbnggpapchbnjbgjkanokmdgblcphd |
Описание | Telegraph Authorisation tool |
Размер файла | 107 KB |
Количество установок | 238 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2021-11-17 |
Дата публикации | 2021-08-15 |
Рейтинг | 4.00/5 Всего 1 оценок |
Разработчик | https://andreitazetdinov.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://andreitazetdinov.com/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Manager for Telegra.ph", "description": "Telegraph Authorisation tool", "version": "1.0.1", "manifest_version": 2, "icons": { "16": "icons\/text_16.png", "64": "icons\/text_64.png", "128": "icons\/text_128.png" }, "permissions": [ "webRequest", "webRequestBlocking", "storage", "*:\/\/*.telegra.ph\/" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Bloggers managing tools", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.telegra.ph\/*" ], "css": [ "contentStyles.css" ], "js": [ "contentScript.js" ] } ] } |