Custom Blogger Extension
Custom hacks for blogger developers
Что такое Custom Blogger Extension?
Custom Blogger Extension - это расширение Chrome, разработанное Muhammad Abu 'l-Gharaniq, и его основная функция - "Custom hacks for blogger developers".
Снимки экрана расширения
Скачать файл CRX расширения Custom Blogger Extension
Скачайте файлы расширений Custom Blogger Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Chrome Extension for Blogger (blogger.com) developers, with shortcuts and basic edits. Shortcuts CTRL + SPACE to open blog URL in new tap from html editor page CTRL + S to save template code CTRL + I to open live preview on html editor page Snippets New feature for code snippets, select your snippet, and it will be copied directly to clipboard. Note: Sometimes snippet selector not showing, don't worry just click on any button on keyboard, or refresh the editor page.
Основная информация о расширении
Название | Custom Blogger Extension |
ID | edbhcnncibhjdeflaagkbdklifcdklmc |
Официальный URL | https://chromewebstore.google.com/detail/custom-blogger-extension/edbhcnncibhjdeflaagkbdklifcdklmc |
Описание | Custom hacks for blogger developers |
Размер файла | 16.39 KB |
Количество установок | 503 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2020-09-02 |
Дата публикации | 2020-09-01 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Muhammad Abu 'l-Gharaniq |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/midoghranek/custom-blogger |
URL страницы политики конфиденциальности | https://ghranek.com/privacy |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Blogger Extension", "description": "Custom hacks for blogger developers", "version": "0.0.2", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.blogger.com\/*" ], "js": [ "scripts\/secret.js", "scripts\/snippetsData.js", "scripts\/snippets.js", "scripts\/content.js" ] } ], "browser_action": { "default_icon": "assets\/icon16.png", "default_popup": "public\/popup.html" } } |