Waiting?

Displays an interactive loading screen to help users deal with stress that accompanies long online waiting times.

Waiting?คืออะไร?

Waiting? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eric Stein และคุณลักษณะหลักของมันคือ "Displays an interactive loading screen to help users deal with stress that accompanies long online waiting times."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Waiting?

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

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

                        Would you be a millionaire if you had a dollar for every time you hit that reload button after waiting to no avail? Is that spinning wheel of doom no longer enough to control your stress levels? Are blank webpages driving you insane?

If so, then you are in need of a new type of loading screen - an interactive one.

Based on the results of a study conducted by two high school students from Staten Island Technical High School (Eric Stein and Daniel Volshteyn), an interactive loading screen greatly assists in increasing a web user's tolerable waiting time (i.e. how long he/she is willing to wait) and therefore decreasing stress. When high-school students were tested with a blank, passive, and interactive loading screen, those with the interactive portrayed the highest average tolerable waiting time.

This extension adds a, "Waiting?" button to the top-right corner of your browser, which you can click on to view and interact with a Newton's Cradle loading screen as you wait, thus giving you access to an online survival tool on any website you visit.

Acknowledgments:

Liam Brummit for providing matter.js (https://github.com/liabru/matter-js) and Newton's Cradle (http://codepen.io/liabru/pen/abFml)                    

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

ชื่อ Waiting? Waiting?
ID bhhpafhgfaeifjeceaeijijbemifafhk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/waiting/bhhpafhgfaeifjeceaeijijbemifafhk
คำอธิบาย Displays an interactive loading screen to help users deal with stress that accompanies long online waiting times.
ขนาดไฟล์ 86.53 KB
จำนวนการติดตั้ง 284
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2017-04-23
วันที่เผยแพร่ 2017-04-23
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Eric Stein
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Waiting?",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Displays an interactive loading screen to help users deal with stress that accompanies long online waiting times.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "cradle.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Waiting?",
        "default_popup": "cradle.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}