view-current-source

View the source code of a page at its current state.

view-current-source क्या है?

view-current-source https://www.greinr.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View the source code of a page at its current state."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension shows you the source code of a page as it is right when you right-click and select "view current source" in your context menu. It is especially helpful when you develop a dynamic webpage with a lot of JavaScript involved in building it.

You can search the source code with "CTRL+F" to find the code section you want to see.

Please feel free to suggest more features. Just leave a comment below or contact/follow me on twitter:
https://twitter.com/ThomasGreiner                    

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

नाम view-current-source view-current-source
ID bloebkffnmchginelkmdcemamcdeamei
आधिकारिक URL https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei
विवरण View the source code of a page at its current state.
फ़ाइल का आकार 16.25 KB
स्थापना संख्या 2,106
वर्तमान संस्करण 0.3.2
अंतिम अपडेट 2013-10-29
प्रकाशन तिथि 2013-10-29
रेटिंग 3.16/5 कुल 25 रेटिंग्स
डेवलपर https://www.greinr.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.greinr.com/projects/#!/extensions
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "view-current-source",
    "version": "0.3.2",
    "minimum_chrome_version": "18.0",
    "description": "View the source code of a page at its current state.",
    "icons": {
        "16": "res\/logo16.png",
        "128": "res\/logo128.png"
    },
    "background": {
        "scripts": [
            "script\/background.js"
        ]
    },
    "options_page": "options.htm",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script\/script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' https:\/\/platform.twitter.com https:\/\/apis.google.com; object-src 'self'"
}