Blissify

Blissify uses facial recognition technology to automatically block pages that are making you unhappy.

Blissify là gì?

Blissify là một tiện ích mở rộng Chrome được phát triển bởi https://www.blissify.io, và tính năng chính của nó là "Blissify uses facial recognition technology to automatically block pages that are making you unhappy.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Blissify

Tải xuống các tệp mở rộng Blissify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Blissify is an extension for Google Chrome that uses emotion detection technology to automatically block the websites that make you unhappy. All you need to get started is a webcam.

Blissify uses your webcam to monitor your facial expressions in real-time as you browse the internet. Upon detecting a rapid increase in negative emotions, Blissify will hide the page you are currently viewing before adding it to your personal block list.

After running Blissify for the first time you will be asked to do a quick calibration: this is so Blissify knows what your 'neutral browsing expression', or NBE, looks like. Sensitivity can be adjusted until you find a negativity avoidance level that works for you.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Blissify Blissify
ID ggjcnaliaijbojobhififalikcdmedkd
URL Chính Thức https://chromewebstore.google.com/detail/blissify/ggjcnaliaijbojobhififalikcdmedkd
Mô tả Blissify uses facial recognition technology to automatically block pages that are making you unhappy.
Kích Thước Tệp 1.55 MB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2016-08-24
Ngày Phát Hành 2016-08-24
Đánh Giá 2.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.blissify.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.blissify.io
URL Trang Trợ Giúp http://www.blissify.io
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blissify",
    "description": "Blissify uses facial recognition technology to automatically block pages that are making you unhappy.",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "\/images\/icon-3.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "http:\/\/*\/*"
            ],
            "js": [
                ".\/js\/jquery-2.2.3.min.js",
                ".\/js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/js\/jquery-2.2.3.min.js",
            ".\/js\/utils.js",
            ".\/js\/clmtrackr.min.js",
            ".\/models\/model_pca_20_svm_emotionDetection.js",
            ".\/js\/emotion_classifier.js",
            ".\/js\/emotionmodel.js",
            ".\/js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "http:\/\/*\/*",
        "",
        "background"
    ],
    "web_accessible_resources": [
        "alert.html",
        "calibrate.html",
        "fonts\/OpenSans-Bold.ttf",
        "fonts\/OpenSans-Light.ttf",
        "fonts\/OpenSans-Regular.ttf",
        "images\/sad_5.png",
        "images\/logo_small.png",
        "images\/cloud-1.png",
        "images\/cloud-2.png",
        "blocked_page.html",
        ".js\/jquery-2.2.3.min.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "\/images\/icon-3.png",
        "48": "\/images\/icon-2.png",
        "128": "\/images\/icon-1.png"
    }
}