WattReplace

Replace reader insert variables with your own prefered settings.

WattReplace là gì?

WattReplace là một tiện ích mở rộng Chrome được phát triển bởi andrewmdcdev, và tính năng chính của nó là "Replace reader insert variables with your own prefered settings.".

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

screenshot
screenshot
screenshot

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

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

                        Version 0.0.0.3

Simple extension for replacing reader insert variables on Wattpad. Enter your settings and the page will automatically fill in the placeholders with your preferences.

Included support for
(Y/N) | (y/n) : Your name
(E/C) | (e/c) : Eye colour
(H/C) | (h/c) : Hair colour

Updates in version 0.0.0.3
-3 additional custom mappings
-Auto Replace checkbox in settings. This eliminates the need to refresh when continuing chapters
-Fixes a bug that would not load gifs or pictures

It's been a while since last update. I did not expect to have many users so I checked and addressed the feedback in the reviews.

Note: if you continue through multiple chapters and the placeholders aren't being replaced, simply refresh the page and they should show up! Happy reading!                    

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

Tên WattReplace WattReplace
ID mhejiinpdnhdioekndpdlcehmfmmeipm
URL Chính Thức https://chromewebstore.google.com/detail/wattreplace/mhejiinpdnhdioekndpdlcehmfmmeipm
Mô tả Replace reader insert variables with your own prefered settings.
Kích Thước Tệp 56.45 KB
Số Lần Cài Đặt 2,842
Phiên Bản Hiện Tại 0.0.0.4
Cập Nhật Lần Cuối 2023-08-30
Ngày Phát Hành 2016-02-09
Đánh Giá 3.64/5 Tổng số 11 Đánh Giá
Nhà Phát Triển andrewmdcdev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WattReplace",
    "version": "0.0.0.4",
    "description": "Replace reader insert variables with your own prefered settings.",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "amdzlogo.png",
        "default_popup": "options.html",
        "default_title": "Reader Insert Multi-Replace on Wattpad"
    },
    "permissions": [
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.wattpad.com\/*",
                "https:\/\/www.wattpad.com\/*"
            ],
            "js": [
                "controller.js"
            ]
        }
    ]
}