Attributes Replacer

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

Attributes Replacer란 무엇입니까?

Attributes Replacer은(는) Krystian Jarmicki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension allowing for easy replacement of HTML attributes' values."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        - 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                    

확장 프로그램 기본 정보

이름 Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
공식 URL https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
설명 Chrome extension allowing for easy replacement of HTML attributes' values.
파일 크기 110 KB
설치 횟수 761
현재 버전 1.2.2
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 4.14/5 총 7 개의 평점
개발자 Krystian Jarmicki
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kjarmicki/attributes-replacer
도움말 페이지 URL https://github.com/kjarmicki/attributes-replacer/issues
지원되는 언어 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"
}