True Full Page for CodePen
Use CodePen.io Full Page view without any distractions or headers.
Was ist True Full Page for CodePen?
True Full Page for CodePen ist eine Chrome-Erweiterung, die von chrisbolin entwickelt wurde, und ihr Hauptmerkmal ist "Use CodePen.io Full Page view without any distractions or headers.".
Erweiterungsscreenshots
True Full Page for CodePen-Erweiterungs-CRX-Datei herunterladen
Laden Sie True Full Page for CodePen-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | True Full Page for CodePen |
ID | mlleoaifccleoilmdocpfjfhffmmbjgn |
Offizielle URL | https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn |
Beschreibung | Use CodePen.io Full Page view without any distractions or headers. |
Dateigröße | 20.08 KB |
Installationsanzahl | 211 |
Aktuelle Version | 1.0.7 |
Letztes Update | 2016-02-05 |
Veröffentlichungsdatum | 2016-02-04 |
Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
Entwickler | chrisbolin |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/chrisbolin/truefull |
Hilfeseite URL | https://github.com/chrisbolin/truefull |
Unterstützte Sprachen | 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" } } |