Edit Hidden Fields

Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.

Edit Hidden Fieldsคืออะไร?

Edit Hidden Fields เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rene "cavac" Schickbauer และคุณลักษณะหลักของมันคือ "Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Edit Hidden Fields

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

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

                        This is a forked, updated version of Ramon Roessler's Hidden Field Switcher.

You can either use CTRL-ALT-S or clicking the extension icon to display/hide hidden fields in HTML forms.                    

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

ชื่อ Edit Hidden Fields Edit Hidden Fields
ID jkgiedeofneodbglnndcejlabknincfp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/edit-hidden-fields/jkgiedeofneodbglnndcejlabknincfp
คำอธิบาย Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.
ขนาดไฟล์ 7.29 KB
จำนวนการติดตั้ง 893
เวอร์ชันปัจจุบัน 0.7
อัปเดตครั้งล่าสุด 2016-03-12
วันที่เผยแพร่ 2016-03-12
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Rene "cavac" Schickbauer
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Edit Hidden Fields",
    "short_name": "Edit hidden",
    "description": "Turns every hidden-field on every website into a simple input text-field for editing. Press Ctrl+Shift+S on the website.",
    "version": "0.7",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}