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