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
官方網址 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"
    }
}