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
官方網址 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"
}