Simple Tab Timer

This extension creates a simple timer as a new tab.

Simple Tab Timerคืออะไร?

Simple Tab Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Apes in Capes และคุณลักษณะหลักของมันคือ "This extension creates a simple timer as a new tab."

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

screenshot

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

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

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

                        If you're looking for a simple tab timer, this is it. Click on the icon, select the time, press START and you're off to the races.

Also, if you've found this extension helpful, tell your friends about it!                    

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

ชื่อ Simple Tab Timer Simple Tab Timer
ID kfnnebepkloaefoekfghncjhfklhoffh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh
คำอธิบาย This extension creates a simple timer as a new tab.
ขนาดไฟล์ 111 KB
จำนวนการติดตั้ง 304
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2022-03-25
วันที่เผยแพร่ 2019-10-11
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Apes in Capes
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.apesincapes.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Tab Timer",
    "description": "This extension creates a simple timer as a new tab.",
    "version": "1.3.1",
    "icons": {
        "512": "icon512.png",
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon512.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*",
                "https:\/\/www.google.ca\/*",
                "http:\/\/www.google.ca\/*",
                "https:\/\/www.google.co.uk\/*",
                "http:\/\/www.google.co.uk\/*",
                "https:\/\/www.google.se\/*",
                "http:\/\/www.google.se\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}