Deeply Find

Search and highlight multiple words on web pages

Qu'est-ce que Deeply Find ?

Deeply Find est une extension Chrome développée par Royal Recruiter, et sa fonction principale est "Search and highlight multiple words on web pages".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Deeply Find

Téléchargez les fichiers d'extension Deeply Find au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom Deeply Find Deeply Find
ID ojcdbgapfniccfnfcbfbdcfdpgmiaknp
URL Officiel https://chromewebstore.google.com/detail/deeply-find/ojcdbgapfniccfnfcbfbdcfdpgmiaknp
Description Search and highlight multiple words on web pages
Taille du Fichier 1.37 MB
Nombre d'Installations 60
Version Actuelle 1.0.1
Dernière Mise à Jour 2020-11-11
Date de Publication 2020-11-09
Évaluation 5.00/5 Total 2 Évaluations
Développeur Royal Recruiter
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://royalrecruiter.com/
URL de la Page d'Aide https://royalrecruiter.com/contact/
Langues Prises en Charge 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"
    ]
}