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
官方網址 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
電子郵箱 [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"
    }
}