Word Replace And Load

Replace all words you in your current page to anything you want!

Qu'est-ce que Word Replace And Load ?

Word Replace And Load est une extension Chrome développée par jerryblum.ideas, et sa fonction principale est "Replace all words you in your current page to anything you want!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Word Replace And Load

Téléchargez les fichiers d'extension Word Replace And Load 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

                        This extension allows users to easily replace a specific word with a different word of their choosing on any webpage. Simply type in the word you wish to replace and the word you want to use as a replacement, and the extension will automatically replace every instance of the chosen word on the page. This can be useful for correcting typos, updating outdated language, or simply personalizing the content of a webpage to your liking. The extension works on any website and can even be used to replace words within text forms, making it a versatile and convenient tool for modifying web content!                    

Informations de Base sur l'Extension

Nom Word Replace And Load Word Replace And Load
ID pbjnbneghgdchjkbeiifmfigjcgbefoi
URL Officiel https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi
Description Replace all words you in your current page to anything you want!
Taille du Fichier 18.75 KB
Nombre d'Installations 3,635
Version Actuelle 1
Dernière Mise à Jour 2022-12-26
Date de Publication 2022-12-26
Évaluation 1.00/5 Total 1 Évaluations
Développeur jerryblum.ideas
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://home.wallationdistry.xyz/
URL de la Page d'Aide https://home.wallationdistry.xyz/contact.html
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Replace all words you in your current page to anything you want!",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Replace And Load",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Replace And Load",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}