True Full Page for CodePen
Use CodePen.io Full Page view without any distractions or headers.
Что такое True Full Page for CodePen?
True Full Page for CodePen - это расширение Chrome, разработанное chrisbolin, и его основная функция - "Use CodePen.io Full Page view without any distractions or headers.".
Снимки экрана расширения
Скачать файл CRX расширения True Full Page for CodePen
Скачайте файлы расширений True Full Page for CodePen в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
CodePen is a powerful prototyping and demoing tool. Now you can show off your pens without the CodePen header; simply click the True Full Page icon in the location bar to toggle the header on or off. True Full Page currently supports "full", "pen", and "details" views. Please report any bugs to the github page for this extension, https://github.com/chrisbolin/truefull. This extension is not associated with or built by CodePen.
Основная информация о расширении
Название | True Full Page for CodePen |
ID | mlleoaifccleoilmdocpfjfhffmmbjgn |
Официальный URL | https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn |
Описание | Use CodePen.io Full Page view without any distractions or headers. |
Размер файла | 20.08 KB |
Количество установок | 211 |
Текущая Версия | 1.0.7 |
Последнее Обновление | 2016-02-05 |
Дата публикации | 2016-02-04 |
Рейтинг | 5.00/5 Всего 6 оценок |
Разработчик | chrisbolin |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/chrisbolin/truefull |
URL страницы помощи | https://github.com/chrisbolin/truefull |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "True Full Page for CodePen", "description": "Use CodePen.io Full Page view without any distractions or headers.", "version": "1.0.7", "short_name": "truefull", "minimum_chrome_version": "48.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Toggle CodePen Header", "default_icon": { "19": "icons\/inactive-19.png", "38": "icons\/inactive-38.png" } }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/codepen.io\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "128": "icons\/inactive-128.png", "64": "icons\/inactive-64.png" } } |