Яeverse Word Count

Яeverse the word count on Google Docs

Яeverse Word Countคืออะไร?

Яeverse Word Count เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Freeassassin และคุณลักษณะหลักของมันคือ "Яeverse the word count on Google Docs"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Яeverse Word Count

ดาวน์โหลดไฟล์ส่วนขยาย Яeverse Word Count ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Яeverse Word Count Яeverse Word Count
ID djepmdeahjglglnoalgieijekmkafoed
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/%D1%8Feverse-word-count/djepmdeahjglglnoalgieijekmkafoed
คำอธิบาย Яeverse the word count on Google Docs
ขนาดไฟล์ 17.47 KB
จำนวนการติดตั้ง 32
เวอร์ชันปัจจุบัน 0.10
อัปเดตครั้งล่าสุด 2020-11-19
วันที่เผยแพร่ 2020-08-31
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Freeassassin
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            ]
        }
    ]
}