Word Counter

Counting the amount of a given word in the current page

Word Counter là gì?

Word Counter là một tiện ích mở rộng Chrome được phát triển bởi chatjonsmedia, và tính năng chính của nó là "Counting the amount of a given word in the current page".

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

screenshot

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

Tải xuống các tệp mở rộng Word Counter 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

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

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

Tên Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
URL Chính Thức https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Mô tả Counting the amount of a given word in the current page
Kích Thước Tệp 14.55 KB
Số Lần Cài Đặt 2,959
Phiên Bản Hiện Tại 1
Cập Nhật Lần Cuối 2022-12-05
Ngày Phát Hành 2022-12-05
Nhà Phát Triển chatjonsmedia
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://home.ujhimselvepost.info/
URL Trang Trợ Giúp https://home.ujhimselvepost.info/contact.html
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}