Quick source viewer

View current page sources: HTML + Javascript + CSS

Quick source viewer क्या है?

Quick source viewer Tomi Mickelsson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View current page sources: HTML + Javascript + CSS"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Displays HTML, Javascript and CSS sources of a page in a fast and compact way.

Source code is syntax colorized and beautified for easy reading.

Badge in the toolbar shows Javascript node counts.

File size and cache header is displayed.

Display onclick handlers with inline javascript.

Look and feel can be modified with custom CSS.

Copy to clipboard. Line numbers.

Selected urls can be hilighted in the list of source files.

Open source - https://github.com/tomimick/chrome-ext-view-src

Blog - http://tomicloud.com/2012/07/viewsrc-chrome-ext                    

एक्सटेंशन की मूल जानकारी

नाम Quick source viewer Quick source viewer
ID cfmcghennfbpmhemnnfjhkdmnbidpanb
आधिकारिक URL https://chromewebstore.google.com/detail/quick-source-viewer/cfmcghennfbpmhemnnfjhkdmnbidpanb
विवरण View current page sources: HTML + Javascript + CSS
फ़ाइल का आकार 74.21 KB
स्थापना संख्या 32,447
वर्तमान संस्करण 1.4.0
अंतिम अपडेट 2021-06-05
प्रकाशन तिथि 2019-05-23
रेटिंग 3.65/5 कुल 112 रेटिंग्स
डेवलपर Tomi Mickelsson
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://tomicloud.com
सहायता पृष्ठ URL https://tomicloud.com/2012/07/viewsrc-chrome-ext
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick source viewer",
    "short_name": "source view",
    "version": "1.4.0",
    "description": "View current page sources: HTML + Javascript + CSS",
    "permissions": [
        ""
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "gear19.png"
    },
    "icons": {
        "16": "gear19.png",
        "128": "gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "config.js",
            "bg.js"
        ]
    },
    "minimum_chrome_version": "26"
}