Attributes Replacer

Chrome extension allowing for easy replacement of HTML attributes' values.

Attributes Replacer là gì?

Attributes Replacer là một tiện ích mở rộng Chrome được phát triển bởi Krystian Jarmicki, và tính năng chính của nó là "Chrome extension allowing for easy replacement of HTML attributes' values.".

Ả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 Attributes Replacer

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

                        - uses CSS selectors to match given attributes
- uses regular expressions to set up replacement rules
- multiple selectors and rules supported
- page is watched for DOM changes and rules are applied to newly added elements
- changes are reverted when replacing is turned off
- changes occur on all tabs simultaneously
- also allows to perform replacement on current page url                    

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

Tên Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
URL Chính Thức https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Mô tả Chrome extension allowing for easy replacement of HTML attributes' values.
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 761
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.14/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Krystian Jarmicki
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kjarmicki/attributes-replacer
URL Trang Trợ Giúp https://github.com/kjarmicki/attributes-replacer/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Attributes Replacer",
    "description": "Chrome extension allowing for easy replacement of HTML attributes' values.",
    "version": "1.2.2"
}