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"
]
} | |