Aleatoric
Listen to your browser make requests.
Aleatoric란 무엇입니까?
Aleatoric은(는) Adak Island Sound에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Listen to your browser make requests."입니다.
확장 프로그램 스크린샷
Aleatoric 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
ID | memlkidjomfbapgamlacahglmgppigai |
공식 URL | https://chrome.google.com/webstore/detail/aleatoric/memlkidjomfbapgamlacahglmgppigai |
설명 | Listen to your browser make requests. |
파일 크기 | 1.03 MB |
설치 횟수 | 14 |
현재 버전 | 0.1 |
최근 업데이트 | 2013-10-01 |
출시 날짜 | 2013-10-01 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | Adak Island Sound |
결제 유형 | free |
지원되는 언어 | 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", "*:\/\/*\/*" ] } |