Deeply Find

Search and highlight multiple words on web pages

Deeply Find क्या है?

Deeply Find Royal Recruiter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Search and highlight multiple words on web pages"।

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

screenshot
screenshot

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

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

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

                        Search and highlight multiple words on web pages. this may a
Can do for you:
 - Highlight multiple english words on all pages. (whole word matching for english words, currently)
 - Your words will be saved.

* Needs to refresh opened pages after install this extension.


If you love it, you can support it on Patreon (https://www.patreon.com/alexius_lee) or donate via PayPal (https://www.paypal.me/alexiuslee)                    

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

नाम Deeply Find Deeply Find
ID ojcdbgapfniccfnfcbfbdcfdpgmiaknp
आधिकारिक URL https://chromewebstore.google.com/detail/deeply-find/ojcdbgapfniccfnfcbfbdcfdpgmiaknp
विवरण Search and highlight multiple words on web pages
फ़ाइल का आकार 1.37 MB
स्थापना संख्या 60
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2020-11-11
प्रकाशन तिथि 2020-11-09
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Royal Recruiter
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://royalrecruiter.com/
सहायता पृष्ठ URL https://royalrecruiter.com/contact/
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deeply Find",
    "version": "1.0.1",
    "description": "Search and highlight multiple words on web pages",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "350": "img\/icon350.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery\/jquery.js",
                "jquery\/jquery.highlight.js",
                "popup.js"
            ],
            "css": [
                "highlight.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib.js",
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            },
            "description": "Activate the extension"
        }
    },
    "options_page": "options\/options.html",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "contextMenus"
    ]
}