Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

Word Count on Webpage By Warp Vessel là gì?

Word Count on Webpage By Warp Vessel là một tiện ích mở rộng Chrome được phát triển bởi Warp Vessel Apps, và tính năng chính của nó là "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Word Count on Webpage By Warp Vessel

Tải xuống các tệp mở rộng Word Count on Webpage By Warp Vessel 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

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

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

Tên Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
URL Chính Thức https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Mô tả A simple chrome extension that allows you to instantly see the word count on the current webpage.
Kích Thước Tệp 6.48 KB
Số Lần Cài Đặt 321
Phiên Bản Hiện Tại 1.02
Cập Nhật Lần Cuối 2019-05-30
Ngày Phát Hành 2019-05-24
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Warp Vessel Apps
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}