Page View Counter
You can check your page view counts per day.
Page View Counterคืออะไร?
Page View Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย suzuki.noritomo และคุณลักษณะหลักของมันคือ "You can check your page view counts per day."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Page View Counter
ดาวน์โหลดไฟล์ส่วนขยาย Page View Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever thought that how many pages you visit every day? Page View Counter counts your visit, after you install this application. And it reset the counts by the day. In addition, you can check 30 days transition on bar graph. 一日何ページ見てる?が解る「Page View Counter」 「いつもどれくらいページを見てるんだろう?」 そんな事を思った事はありませんか? Page View Counter を入れておけば常にカウントしてくれます。 日ごとにリセットされ、30日間の経過をグラフで見ることもできます。
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Page View Counter |
ID | pbffhgellplheapoloifdakppmnbmdkd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/page-view-counter/pbffhgellplheapoloifdakppmnbmdkd |
คำอธิบาย | You can check your page view counts per day. |
ขนาดไฟล์ | 72.3 KB |
จำนวนการติดตั้ง | 247 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2013-08-20 |
วันที่เผยแพร่ | 2013-08-20 |
คะแนน | 4.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | suzuki.noritomo |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Page View Counter", "version": "0.3", "description": "You can check your page view counts per day.", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "web_accessible_resources": [ "img\/nums\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentscript.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_title": "Page View Counter", "default_icon": "img\/19.png", "default_popup": "popup.html" } } |