One Day Pixel Sorting

Discover each day a new pixel sorted background whenever you open a new tab or Google homepage

One Day Pixel Sorting란 무엇입니까?

One Day Pixel Sorting은(는) simon.bruno.77에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Discover each day a new pixel sorted background whenever you open a new tab or Google homepage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

One Day Pixel Sorting 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Images have been selected from a large panel of pictures which pixels have been sorted using a special algorithme. 

This algorithm is simple. Each line (horizontal or vertical) is processed separately. The algorithm begins with the pixel at one end and begins to record in an array all subsequent pixels having a lower or equal brightness. Once it finds a pixel with higher brightness, it sorts the array of pixels previously created in brightness order and starts a new array. And so on until the end of the line before moving on to the next line. Variations have been added in order to obtain different results.                    

확장 프로그램 기본 정보

이름 One Day Pixel Sorting One Day Pixel Sorting
ID nohbnhhchkhgiaghjaioohlbdpclkaak
공식 URL https://chromewebstore.google.com/detail/one-day-pixel-sorting/nohbnhhchkhgiaghjaioohlbdpclkaak
설명 Discover each day a new pixel sorted background whenever you open a new tab or Google homepage
파일 크기 13.5 KB
설치 횟수 61
현재 버전 0.0.1
최근 업데이트 2017-05-12
출시 날짜 2017-05-11
평점 5.00/5 총 1 개의 평점
개발자 simon.bruno.77
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "One Day Pixel Sorting",
    "description": "Discover each day a new pixel sorted background whenever you open a new tab or Google homepage",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "index.html"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [
        "https:\/\/bruno-simon.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "content_scripts\/main.css"
            ],
            "js": [
                "content_scripts\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "assets\/images\/icons\/16x16.png",
        "32": "assets\/images\/icons\/32x32.png",
        "48": "assets\/images\/icons\/48x48.png",
        "128": "assets\/images\/icons\/128x128.png"
    }
}