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はchrisbolinによって開発されたChromeの拡張機能で、その主な機能は「Use CodePen.io Full Page view without any distractions or headers.」です。

拡張機能のスクリーンショット

screenshot
screenshot

True Full Page for CodePen拡張機能のCRXファイルをダウンロード

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 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"
    }
}