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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
]
} | |