Word Replace And Load

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

Hvad er Word Replace And Load?

Word Replace And Load er en Chrome-udvidelse udviklet af jerryblum.ideas, og dens hovedfunktion er "Replace all words you in your current page to anything you want!".

Udvidelsesskærmbilleder

screenshot

Download Word Replace And Load-udvidelses-CRX-fil

Download Word Replace And Load-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Word Replace And Load Word Replace And Load
ID pbjnbneghgdchjkbeiifmfigjcgbefoi
Officiel URL https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi
Beskrivelse Replace all words you in your current page to anything you want!
Filstørrelse 18.75 KB
Antal Installationer 3,635
Nuværende Version 1
Senest Opdateret 2022-12-26
Udgivelsesdato 2022-12-26
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler jerryblum.ideas
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://home.wallationdistry.xyz/
Hjælpeside-URL https://home.wallationdistry.xyz/contact.html
Understøttede Sprog 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"
            ]
        }
    ]
}