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ファイルをダウンロード

One Day Pixel Sorting拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}