Twitter Timer

This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.

Twitter Timerคืออะไร?

Twitter Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Haruya Nakamura และคุณลักษณะหลักของมันคือ "This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission."

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

screenshot
screenshot

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

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

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

                        【To you who want to break out of Twitter】
This extension gives people who just watch too much Twitter time to concentrate on their work.
If you want to stop watching Twitter, try setting this extension.
When you open the Twitter site (twitter.com), this extension will automatically close Twitter open tabs after a set amount of time.                    

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

ชื่อ Twitter Timer Twitter Timer
ID dbpliifabeopadfiaejlchjmdonpgdne
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-timer/dbpliifabeopadfiaejlchjmdonpgdne
คำอธิบาย This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.
ขนาดไฟล์ 1.03 MB
จำนวนการติดตั้ง 60
เวอร์ชันปัจจุบัน 2
อัปเดตครั้งล่าสุด 2020-03-30
วันที่เผยแพร่ 2020-03-26
ผู้พัฒนา Haruya Nakamura
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "short_name": "__MSG_short_name__",
    "version": "2",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "backend.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_popup": "options.html"
    }
}