Aleatoric

Listen to your browser make requests.

Aleatoric là gì?

Aleatoric là một tiện ích mở rộng Chrome được phát triển bởi Adak Island Sound, và tính năng chính của nó là "Listen to your browser make requests.".

Ả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 Aleatoric

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

                        Ever wanted to listen to your browser's HTTP traffic? Well now you can!

Aleatoric plays sounds when Chrome HTTP requests begin, end, or fail. For example, when a request begins, you'll hear what sounds like a phone ringing at a very high pitch. When an image request completes, you'll hear a little pop noise. And when a stylesheet request completes, you'll hear a cell note. And so on. You can preview each noise in the Aleatoric modal dialog. (Once you've downloaded Aleatoric, just click on the "A" next to the hamburger button in Chrome. You can also turn off Aleatoric sounds there, and change the volume.)

The pitch of the note indicates the size of the content downloaded; a lower pitch is a larger file; a higher pitch, something quite small.

One note: Aleatoric does require access to *all* of your web requests. But! We don't use that data for anything. In fact, we don't make any web requests of our own. (Also, Aleatoric doesn't work in Incognito mode unless you specifically enable it.) If you're skeptical, Aleatoric is open source, and you can read the code here: https://github.com/stenson/aleatoric                    

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

Tên Aleatoric Aleatoric
ID memlkidjomfbapgamlacahglmgppigai
URL Chính Thức https://chrome.google.com/webstore/detail/aleatoric/memlkidjomfbapgamlacahglmgppigai
Mô tả Listen to your browser make requests.
Kích Thước Tệp 1.03 MB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2013-10-01
Ngày Phát Hành 2013-10-01
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Adak Island Sound
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Aleatoric",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Listen to your browser make requests.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "aleatoric-icon-16.png",
        "48": "aleatoric-icon-48.png",
        "128": "aleatoric-icon-128.png"
    },
    "background": {
        "scripts": [
            "functions.js",
            "charlie.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ]
}