Ctrl-F++

A Chrome extension for students of HTML.

Ctrl-F++คืออะไร?

Ctrl-F++ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marisa Chow และคุณลักษณะหลักของมันคือ "A Chrome extension for students of HTML."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ctrl-F++

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

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

                        Ctrl-F++ is an educational Chrome extension aimed to aid students of HTML. 

Our mission is to move users beyond a place of head knowledge into a familiarity with web development. Ctrl-F++, borrowing from its namesake,  searches your current web page's source code for any specified HTML tags and highlights the relevant portions of the web page. It also counts the number of instances that tag appears and links to more info about that HTML tag. 

Find your tags in the wild. Explore. Discover. Engage.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Ctrl-F++ Ctrl-F++
ID nejphjodhgicmobmeaekpcggihifjmlp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/ctrl-f++/nejphjodhgicmobmeaekpcggihifjmlp
คำอธิบาย A Chrome extension for students of HTML.
ขนาดไฟล์ 316 KB
จำนวนการติดตั้ง 77
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-02-08
วันที่เผยแพร่ 2015-02-08
คะแนน 3.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Marisa Chow
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mlchow/ctrl-f
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ctrl-F++",
    "description": "A Chrome extension for students of HTML.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "spyglass.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "24": "spyglass.png",
        "48": "spyglass.png",
        "128": "spyglass.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}