True Full Page for CodePen

Use CodePen.io Full Page view without any distractions or headers.

What is True Full Page for CodePen?

True Full Page for CodePen is a Chrome extension developed by chrisbolin, and its main feature is "Use CodePen.io Full Page view without any distractions or headers.".

Extension Screenshots

screenshot
screenshot

Download True Full Page for CodePen Extension CRX File

Download True Full Page for CodePen extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name True Full Page for CodePen True Full Page for CodePen
ID mlleoaifccleoilmdocpfjfhffmmbjgn
Official URL https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn
Description Use CodePen.io Full Page view without any distractions or headers.
File Size 20.08 KB
Installation Count 211
Current Version 1.0.7
Last Updated 2016-02-05
Publish Date 2016-02-04
Rating 5.00/5 Total 6 Ratings
Developer chrisbolin
Payment Type free
Extension Website https://github.com/chrisbolin/truefull
Help Page URL https://github.com/chrisbolin/truefull
Supported Languages 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"
    }
}