WattReplace

Replace reader insert variables with your own prefered settings.

WattReplace란 무엇입니까?

WattReplace은(는) andrewmdcdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace reader insert variables with your own prefered settings."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

WattReplace 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 WattReplace WattReplace
ID mhejiinpdnhdioekndpdlcehmfmmeipm
공식 URL https://chromewebstore.google.com/detail/wattreplace/mhejiinpdnhdioekndpdlcehmfmmeipm
설명 Replace reader insert variables with your own prefered settings.
파일 크기 56.45 KB
설치 횟수 2,842
현재 버전 0.0.0.4
최근 업데이트 2023-08-30
출시 날짜 2016-02-09
평점 3.64/5 총 11 개의 평점
개발자 andrewmdcdev
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}