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 هو إضافة Chrome تم تطويرها بواسطة chrisbolin، والميزة الرئيسية لها هي "Use CodePen.io Full Page view without any distractions or headers.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة True Full Page for CodePen

قم بتنزيل ملفات الامتداد True Full Page for CodePen بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}