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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use CodePen.io Full Page view without any distractions or headers."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में True Full Page for CodePen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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