Text Changer

This extension allows you to change some words for other.

Text Changerとは何ですか?

Text ChangerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to change some words for other.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Text Changer拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This Chrome extension lets you change text on pages that you navigate.

Features:
- Add multiple words;
- Badge shows the ammount of text changed;
- Disable badge;
- Updates text efficiently when the DOM is changed.                    

拡張機能の基本情報

名前 Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
公式URL https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
説明 This extension allows you to change some words for other.
ファイルサイズ 45.17 KB
インストール数 1,491
現在のバージョン 1.0.0
最終更新日 2018-07-30
公開日 2018-07-29
評価 4.27/5 合計 11 レビュー
開発者 Unknown
支払い方法 free
拡張機能のウェブサイト https://github.com/marcioggs/text-changer-chrome-extension
ヘルプページのURL https://github.com/marcioggs/text-changer-chrome-extension/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Changer",
    "version": "1.0.0",
    "description": "This extension allows you to change some words for other.",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "M\u00e1rcio Gabriel",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/changeText.js"
            ]
        }
    ],
    "options_page": "pages\/options.html",
    "homepage_url": "https:\/\/github.com\/marcioggs\/text-changer-chrome-extension",
    "permissions": [
        "storage"
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "scripts\/onInstalled.js",
            "scripts\/badge.js"
        ],
        "persistent": false
    }
}