Jump Scare

Allows users to display a jump scare on defined sites

Jump Scare là gì?

Jump Scare là một tiện ích mở rộng Chrome được phát triển bởi ghc_chrome_extensions, và tính năng chính của nó là "Allows users to display a jump scare on defined sites".

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

screenshot

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

Tải xuống các tệp mở rộng Jump Scare 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

                        With this extension, you can specify websites in which to randomly display a jump scare image and sound to remind yourself that you don't want to be on that, perhaps unproductive, site. You can use this extension to condition yourself not to go to sites of your choosing.

This extension is mostly for fun. Warning: users may find some of the scary images disturbing.                    

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

Tên Jump Scare Jump Scare
ID mcgppfmilllaikblfoknoiilgkcmcepo
URL Chính Thức https://chrome.google.com/webstore/detail/jump-scare/mcgppfmilllaikblfoknoiilgkcmcepo
Mô tả Allows users to display a jump scare on defined sites
Kích Thước Tệp 2.04 MB
Số Lần Cài Đặt 117
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-05-31
Ngày Phát Hành 2019-05-26
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ghc_chrome_extensions
Loại Thanh Toán in_app
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jump Scare",
    "version": "1.0.0",
    "description": "Allows users to display a jump scare on defined sites",
    "icons": {
        "16": "images\/scary-icon-16.png",
        "48": "images\/scary-icon-48.png",
        "128": "images\/scary-icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                "main\/main.css"
            ],
            "js": [
                "main\/main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "images\/*.jpg",
        "images\/*.jpeg",
        "sounds\/*.mp3"
    ]
}