Pinger

Prevent dynos from falling asleep.

Pingerคืออะไร?

Pinger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jzwang และคุณลักษณะหลักของมันคือ "Prevent dynos from falling asleep."

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

screenshot
screenshot
screenshot

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

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

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

                        Pinger will ping any websites on demand. Some site hosting services, such as Heroku, have a timer (e.g. 30 minutes) for their free acounts, such that after a certain amount of inactivity they will go to sleep and can take up to 10 or 20 seconds to wake up. Pinger will ping your websites every 20 minutes to make sure they will never go to sleep which ensures instantaneous page load.  

Pinger allows you to ping multiple sites at once. Pinger also allows you to select the time range of the day that you want to be pinging your sites. Logs are provided in the extension to keep track of successful pings and any error reports. Pinger stores your sites in Chrome's synchronous storage so you will always have access to your stored sites. 

Have a try today!


Note -- As of late 2015, Heroku will only allow 15 hours of awake time per 24 hours on free accounts, this is where Pinger's time range selection comes in. You can strategically select the times of the day when you need most that your sites to be awake.                    

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

ชื่อ Pinger Pinger
ID egbpibkpckbdhmacfijknpecliodfcgh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pinger/egbpibkpckbdhmacfijknpecliodfcgh
คำอธิบาย Prevent dynos from falling asleep.
ขนาดไฟล์ 9.45 MB
จำนวนการติดตั้ง 407
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2016-12-07
วันที่เผยแพร่ 2016-12-07
ผู้พัฒนา jzwang
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jz-wang/Pinger
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinger",
    "version": "1.0.1",
    "description": "Prevent dynos from falling asleep.",
    "icons": {
        "16": "assets\/icon\/d16.png",
        "48": "assets\/icon\/d48.png",
        "128": "assets\/icon\/d128.png"
    },
    "background": {
        "scripts": [
            "assets\/jquery-3.1.1.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_assets\/icon": {
            "19": "assets\/icon\/d19.png",
            "38": "assets\/icon\/d38.png"
        },
        "default_title": "Pinger",
        "default_popup": "popup.html"
    },
    "permissions": [
        "alarms",
        "storage",
        "*:\/\/*\/*",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ]
}