Word Replace And Load

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

Word Replace And Load là gì?

Word Replace And Load là một tiện ích mở rộng Chrome được phát triển bởi jerryblum.ideas, và tính năng chính của nó là "Replace all words you in your current page to anything you want!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Word Replace And Load

Tải xuống các tệp mở rộng Word Replace And Load dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Word Replace And Load Word Replace And Load
ID pbjnbneghgdchjkbeiifmfigjcgbefoi
URL Chính Thức https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi
Mô tả Replace all words you in your current page to anything you want!
Kích Thước Tệp 18.75 KB
Số Lần Cài Đặt 3,635
Phiên Bản Hiện Tại 1
Cập Nhật Lần Cuối 2022-12-26
Ngày Phát Hành 2022-12-26
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jerryblum.ideas
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://home.wallationdistry.xyz/
URL Trang Trợ Giúp https://home.wallationdistry.xyz/contact.html
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}