Numberfy (Numbers in Spotify)

Adds numbers to songs in spotify playlists and albums.

Numberfy (Numbers in Spotify)とは何ですか?

Numberfy (Numbers in Spotify)はLinusKによって開発されたChromeの拡張機能で、その主な機能は「Adds numbers to songs in spotify playlists and albums.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Numberfy (Numbers in Spotify)拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        DISCLAIMER: This extension is NOT an offical extension from Spotify.

This extension adds numbers to the songs in your spotify playlists, songs (collection) and albums.

Configurable using the icon in your browser (see 4th screenshot).

If the extension stops working, let me know (email below).

This extension is Open Source and can be found here: https://github.com/LinusCDE/Numberfy                    

拡張機能の基本情報

名前 Numberfy (Numbers in Spotify) Numberfy (Numbers in Spotify)
ID mlhcbpdinhgnjoenjaiimhjmckbiegig
公式URL https://chrome.google.com/webstore/detail/numberfy-numbers-in-spoti/mlhcbpdinhgnjoenjaiimhjmckbiegig
説明 Adds numbers to songs in spotify playlists and albums.
ファイルサイズ 62.92 KB
インストール数 59
現在のバージョン 1.46
最終更新日 2018-09-15
公開日 2018-09-15
評価 5.00/5 合計 1 レビュー
開発者 LinusK
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Numberfy (Numbers in Spotify)",
    "version": "1.46",
    "description": "Adds numbers to songs in spotify playlists and albums.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png",
        "512": "icons\/icon_512.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "all_frames": false,
            "js": [
                "scripts\/spotify_numerizer.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "extension_popup\/page.html"
    }
}