Measur
Record how far you scroll on Tumblr
Measurคืออะไร?
Measur เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cactusman.nick และคุณลักษณะหลักของมันคือ "Record how far you scroll on Tumblr"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Measur
ดาวน์โหลดไฟล์ส่วนขยาย Measur ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wonder how much Tumbling you do? Using Measur you'll know exactly how far you've gone as a physical distance. Every inch or centimetre is recorded for posterity, so when you ask yourself what you've done all day, you'll know the extent of your Tumbles. Each time you enter a Tumblr tab, Measur begins recording your travel. Every tab receives an individual distance counter, as part of its title, which updates when you navigate to a new Tumblr page. As well, a cumulative total is maintained and accessible by the button in the upper right corner. The options page give you your choice of units, metric or imperial, as well as the ability to reset your total back to zero whenever you want.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Measur |
ID | emmhkobkpbmoddcaejhpnffekhigbool |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/measur/emmhkobkpbmoddcaejhpnffekhigbool |
คำอธิบาย | Record how far you scroll on Tumblr |
ขนาดไฟล์ | 14.14 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 2.5 |
อัปเดตครั้งล่าสุด | 2013-08-19 |
วันที่เผยแพร่ | 2013-08-18 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | cactusman.nick |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Measur", "version": "2.5", "manifest_version": 2, "icons": { "19": "images\/greyIcon19.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "description": "Record how far you scroll on Tumblr", "browser_action": { "default_icon": "images\/greyIcon19.png", "default_popup": "popup.html" }, "options_page": "options.html", "background": { "scripts": [ "backgroundScript.js" ], "persistent": false }, "permissions": [ "tabs", "storage", "*:\/\/*.tumblr.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.tumblr.com\/*" ], "js": [ "injectScript.js" ] } ] } |