Blitzn
A chrome extension that stops children googling something that ruins the mystery of christmas for them.
Что такое Blitzn?
Blitzn - это расширение Chrome, разработанное Studio Something, и его основная функция - "A chrome extension that stops children googling something that ruins the mystery of christmas for them.".
Снимки экрана расширения
Скачать файл CRX расширения Blitzn
Скачайте файлы расширений Blitzn в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Scared of your little ones finding out Santa’s big secret? Install BLITZN to make your browser free from all those Santa spoilers. With our content screening technology able to detect all unsuitable content when your child is browsing online, you don’t need to worry about stumbling on the big Christmas secret.
Основная информация о расширении
Название | |
ID | imphdkmejcbcdaipddhhicjenmlccono |
Официальный URL | https://chromewebstore.google.com/detail/blitzn/imphdkmejcbcdaipddhhicjenmlccono |
Описание | A chrome extension that stops children googling something that ruins the mystery of christmas for them. |
Размер файла | 2.16 MB |
Количество установок | 16 |
Текущая Версия | 1.1.0 |
Последнее Обновление | 2016-12-14 |
Дата публикации | 2016-12-14 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | Studio Something |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://blitzn.io |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Blitzn", "version": "1.1.0", "description": "A chrome extension that stops children googling something that ruins the mystery of christmas for them.", "icons": [], "background": { "scripts": [ "scripts\/constants.js", "scripts\/helpers.js", "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/jquery-3.1.1.min.js", "scripts\/constants.js", "scripts\/helpers.js", "scripts\/blocker.js", "scripts\/questions.js" ], "css": [ "styles\/blocker.css" ] } ], "permissions": [ "activeTab", "storage" ], "browser_action": { "default_icon": { "16": "assets\/blocker_off_16.png", "48": "assets\/blocker_off_48.png", "128": "assets\/blocker_off_128.png" }, "default_popup": "popup.html", "default_title": "Blitzn" }, "manifest_version": 2, "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self';", "web_accessible_resources": [ "blocker.html", "assets\/*" ] } |