Hidden Form Finder

See all Hidden Fields on the Page!

Hidden Form Finder क्या है?

Hidden Form Finder https://www.softwarebyjoe.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See all Hidden Fields on the Page!"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        See all hidden form fields on the page.

Are you doing development and need help testing hidden form fields?

Or, just interested in seeing what information the site you are on is passing about you!

Either way, this extension makes it extremely easy to see all hidden form fields on the page. 

The extension currently has 2 modes of providing hidden field info: 
1) The HFF Toolbar
2) JavaScript console logging

These options can each be turned and off through the options page. Additionally, there is a timer in case you want the toolbar to dissappear after a certain amount of time.

Future potential features:
- ability to whitelist for sites not to show toolbar for

Update 0.2 - 4/5/2014
- Added scrollbar for pages with large numbers of hidden fields.
- Added Browser Icon that goes right to the Options page                    

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

नाम Hidden Form Finder Hidden Form Finder
ID adglgkhcpfdcocgekhbkghpajnbgcekd
आधिकारिक URL https://chromewebstore.google.com/detail/hidden-form-finder/adglgkhcpfdcocgekhbkghpajnbgcekd
विवरण See all Hidden Fields on the Page!
फ़ाइल का आकार 281 KB
स्थापना संख्या 650
वर्तमान संस्करण 0.2
अंतिम अपडेट 2014-04-05
प्रकाशन तिथि 2014-04-05
रेटिंग 3.50/5 कुल 4 रेटिंग्स
डेवलपर https://www.softwarebyjoe.com
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hidden Form Finder",
    "short_name": "HFF",
    "version": "0.2",
    "description": "See all Hidden Fields on the Page!",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "hffstyles.css"
            ],
            "js": [
                "jquery.js",
                "hffmain.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_popup": "options.html"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2
}