Replace Text

Adds replace text to context menu.

Replace Text là gì?

Replace Text là một tiện ích mở rộng Chrome được phát triển bởi Danny Keeley, và tính năng chính của nó là "Adds replace text to context menu.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Replace Text 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

                        Right click on some text and choose Replace Text to begin!
Can also solve maths if in (brackets)

## Updates ##
v0.2 Styling and bug fixes (May 2021)                    

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

Tên Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
URL Chính Thức https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
Mô tả Adds replace text to context menu.
Kích Thước Tệp 10.45 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2021-05-10
Ngày Phát Hành 2021-05-08
Nhà Phát Triển Danny Keeley
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replace Text",
    "version": "0.2",
    "description": "Adds replace text to context menu.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}