True Full Page for CodePen
Use CodePen.io Full Page view without any distractions or headers.
¿Qué es True Full Page for CodePen?
True Full Page for CodePen es una extensión de Chrome desarrollada por chrisbolin, y su función principal es "Use CodePen.io Full Page view without any distractions or headers.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión True Full Page for CodePen
Descarga archivos de extensión True Full Page for CodePen en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | True Full Page for CodePen |
ID | mlleoaifccleoilmdocpfjfhffmmbjgn |
URL Oficial | https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn |
Descripción | Use CodePen.io Full Page view without any distractions or headers. |
Tamaño del Archivo | 20.08 KB |
Cantidad de Instalaciones | 211 |
Versión Actual | 1.0.7 |
Última Actualización | 2016-02-05 |
Fecha de Publicación | 2016-02-04 |
Calificación | 5.00/5 Total de 6 Calificaciones |
Desarrollador | chrisbolin |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/chrisbolin/truefull |
URL de la Página de Ayuda | https://github.com/chrisbolin/truefull |
Idiomas Soportados | 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" } } |