Numberfy (Numbers in Spotify)

Adds numbers to songs in spotify playlists and albums.

Numberfy (Numbers in Spotify)คืออะไร?

Numberfy (Numbers in Spotify) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย LinusK และคุณลักษณะหลักของมันคือ "Adds numbers to songs in spotify playlists and albums."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Numberfy (Numbers in Spotify)

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}