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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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"
    }
}