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ファイルをダウンロード

Attributes Replacer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        - 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"
}