Quick source viewer

View current page sources: HTML + Javascript + CSS

Quick source viewerคืออะไร?

Quick source viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tomi Mickelsson และคุณลักษณะหลักของมันคือ "View current page sources: HTML + Javascript + CSS"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick source viewer

ดาวน์โหลดไฟล์ส่วนขยาย Quick source viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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