Global Replace All

A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…

Global Replace All là gì?

Global Replace All là một tiện ích mở rộng Chrome được phát triển bởi GirkovArpa, và tính năng chính của nó là "A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…".

Ả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 Global Replace All

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

                        A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab is loaded.                    

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

Tên Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
URL Chính Thức https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Mô tả A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…
Kích Thước Tệp 16.89 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 0.0.0.2
Cập Nhật Lần Cuối 2020-10-05
Ngày Phát Hành 2020-06-05
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển GirkovArpa
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/GirkovArpa/global-replace-all/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Global Replace All",
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "version": "0.0.0.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Global Replace All",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}