Text Changer

This extension allows you to change some words for other.

Text Changer là gì?

Text Changer là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension allows you to change some words for other.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Text Changer

Tải xuống các tệp mở rộng Text Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
URL Chính Thức https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
Mô tả This extension allows you to change some words for other.
Kích Thước Tệp 45.17 KB
Số Lần Cài Đặt 1,491
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-07-30
Ngày Phát Hành 2018-07-29
Đánh Giá 4.27/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/marcioggs/text-changer-chrome-extension
URL Trang Trợ Giúp https://github.com/marcioggs/text-changer-chrome-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}