Count Words

Count the amount of words in your page!

Count Words là gì?

Count Words là một tiện ích mở rộng Chrome được phát triển bởi andinomedia.co, và tính năng chính của nó là "Count the amount of words in your 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 Count Words

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

                        Count Words is a fun extension that will count how many times a word appears in the user's page.                    

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

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