SearchBarFindInPage

Find words in page

SearchBarFindInPage क्या है?

SearchBarFindInPage https://red-treasure.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find words in page"।

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

screenshot

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

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

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

                        Search bar to find your searched words in the page you are seeing.

Step1. Search keywords with google from the chrome's address bar or google's web site.
Step2. Move to the site you would like to see.
Step3. Set the mouse pointer under the address bar, and "Search bar" will appear.
Step4. Click the keyword on "Search bar" which you would like to search in the current site.

Most of the source code of this originates in "MigemoFindInPage".
https://chrome.google.com/extensions/detail/fojbanjemmcmjomadodejdophegjdpkc

Thanks a lot for edvakf.

searchbar, find in page, search bar                    

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

नाम SearchBarFindInPage SearchBarFindInPage
ID aefobaddfpadfnimjhejodmedmbogkkp
आधिकारिक URL https://chromewebstore.google.com/detail/searchbarfindinpage/aefobaddfpadfnimjhejodmedmbogkkp
विवरण Find words in page
फ़ाइल का आकार 27.48 KB
स्थापना संख्या 17
वर्तमान संस्करण 0.4.1
अंतिम अपडेट 2020-01-30
प्रकाशन तिथि 2020-01-30
रेटिंग 3.00/5 कुल 4 रेटिंग्स
डेवलपर https://red-treasure.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://red-treasure.com/report/?p=577
समर्थित भाषाएँ en
manifest.json
{
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "google_query.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "css": [
                "searchbar.css"
            ],
            "js": [
                "searchbar.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Find words in page",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC3Nz3foAueZU0Yw3FD0imJDXMvILSR8lEXXXZgcJJzztfzfUIuF1CBD0AFXjrtCr085r5x4hwTfyZn3aSWE0SJ1mh7onyUehpDEzDZNN9IWT1aydTZISS8btVLqSfYjiL8HB99H2vavhMp4Ve3cwh8YvfoV78PnrdPQSTSvtP0FwIDAQAB",
    "manifest_version": 2,
    "name": "SearchBarFindInPage",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.4.1"
}