Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Website Lockerคืออะไร?
Website Locker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย calebgeizer และคุณลักษณะหลักของมันคือ "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Website Locker
ดาวน์โหลดไฟล์ส่วนขยาย Website Locker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. Pick between a whitelist or blacklist, a blacklist locks the websites listed while a whitelist locks every website but the ones listed. Then type in the websites you want locked/unlocked and put in the amount of unlocked time. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | kbomichpahnfklembajcficjediaphpm |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
| คำอธิบาย | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
| ขนาดไฟล์ | 8.1 KB |
| จำนวนการติดตั้ง | 1,119 |
| เวอร์ชันปัจจุบัน | 0.1.0 |
| อัปเดตครั้งล่าสุด | 2022-04-07 |
| วันที่เผยแพร่ | 2019-05-03 |
| คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
| ผู้พัฒนา | calebgeizer |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://calebgeizer.com/ |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Website Locker",
"version": "0.1.0",
"manifest_version": 2,
"description": "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.",
"homepage_url": "https:\/\/github.com\/calebgeizer",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_title": "Unlock\/Lock",
"default_popup": "options.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"storage"
]
} | |