Яeverse Word Count

Яeverse the word count on Google Docs

Яeverse Word Count là gì?

Яeverse Word Count là một tiện ích mở rộng Chrome được phát triển bởi Freeassassin, và tính năng chính của nó là "Яeverse the word count on Google Docs".

Ả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 Яeverse Word Count

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

                        Aight listen, I was writing an essay for school that was due in like 30 minuets right? And I keep looking at the word counter for Google Docs and just having to do the mental math about how many more words I have to write to be done with it. So I was like you know what screw it, I'm gonna make a Chrome Extension to Яeverse the word counter on Google Docs. So I gave up on that essay and started coding this extension and now here we are! Anyway if you also are very easily distracted by the incapable word counter on Google Docs download this extension!                    

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

Tên Яeverse Word Count Яeverse Word Count
ID djepmdeahjglglnoalgieijekmkafoed
URL Chính Thức https://chromewebstore.google.com/detail/%D1%8Feverse-word-count/djepmdeahjglglnoalgieijekmkafoed
Mô tả Яeverse the word count on Google Docs
Kích Thước Tệp 17.47 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 0.10
Cập Nhật Lần Cuối 2020-11-19
Ngày Phát Hành 2020-08-31
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Freeassassin
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": "\u042feverse Word Count",
    "version": "0.10",
    "description": "\u042feverse the word count on Google Docs",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/docs.Google.com\/*",
        "input"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_popup": "code\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.Google.com\/*"
            ],
            "js": [
                "code\/inject.js"
            ]
        }
    ]
}