Page timer

place a timer into a webpage which will bring the page back at the end of the timer

Page timerคืออะไร?

Page timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย attiewilly และคุณลักษณะหลักของมันคือ "place a timer into a webpage which will bring the page back at the end of the timer"

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

screenshot

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

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

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

                        en cliquant sur le chronomètre à droite de la barre d'adresse vous pouvez définir une durée (xhymzs pour x heures, y minutes et z secondes) au bout de laquelle la page reprendra le focus.
c'est utile pour retourner sur la page d'un upload à la fin de l'upload par exemple, ou pour tout les jeux avec des temps d'attentes longs (1h et +). Au lieu de regarder les compteurs s'égrener, profitez en pour naviguer !

User Data Privacy :
This extension does not collect any user data.

version 3.4 added :
- ability to launch a timer from the context menu of a page

version 3.3 added :
- correction in the manifest.json

version 3.2 added :
- removed console.logs

version 3.1 added :
- possibility to use as many timers as you want without compromising timing accuracy
- timing is now done in a background script which will stay active even if your tab is suspended
- fixed clocks (now they animate all the time !)
- fixed clocks (now they show most of the time)

version 3.0 added :
- display a clock showing how much time is left to wait

version 2.0 added :
- start timer by pressing enter

version 1.0 added :
- basic functionnality                    

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

ชื่อ Page timer Page timer
ID fahebinhklaebeegpmcceoggckkmbbnd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/page-timer/fahebinhklaebeegpmcceoggckkmbbnd
คำอธิบาย place a timer into a webpage which will bring the page back at the end of the timer
ขนาดไฟล์ 504 KB
จำนวนการติดตั้ง 172
เวอร์ชันปัจจุบัน 3.5
อัปเดตครั้งล่าสุด 2018-11-07
วันที่เผยแพร่ 2018-11-07
คะแนน 4.50/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา attiewilly
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://pagetimer.blogspot.com/
URL หน้าช่วยเหลือ http://pagetimer.blogspot.com/
ภาษาที่รองรับ fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page timer",
    "description": "place a timer into a webpage which will bring the page back at the end of the timer",
    "version": "3.5",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "timer.js",
            "contextMenu.js"
        ],
        "persistent": true
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}