True Full Page for CodePen
Use CodePen.io Full Page view without any distractions or headers.
Qu'est-ce que True Full Page for CodePen ?
True Full Page for CodePen est une extension Chrome développée par chrisbolin, et sa fonction principale est "Use CodePen.io Full Page view without any distractions or headers.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension True Full Page for CodePen
Téléchargez les fichiers d'extension True Full Page for CodePen au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | True Full Page for CodePen |
ID | mlleoaifccleoilmdocpfjfhffmmbjgn |
URL Officiel | https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn |
Description | Use CodePen.io Full Page view without any distractions or headers. |
Taille du Fichier | 20.08 KB |
Nombre d'Installations | 211 |
Version Actuelle | 1.0.7 |
Dernière Mise à Jour | 2016-02-05 |
Date de Publication | 2016-02-04 |
Évaluation | 5.00/5 Total 6 Évaluations |
Développeur | chrisbolin |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/chrisbolin/truefull |
URL de la Page d'Aide | https://github.com/chrisbolin/truefull |
Langues Prises en Charge | 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" } } |