Numberfy (Numbers in Spotify)
Adds numbers to songs in spotify playlists and albums.
Numberfy (Numbers in Spotify) là gì?
Numberfy (Numbers in Spotify) là một tiện ích mở rộng Chrome được phát triển bởi LinusK, và tính năng chính của nó là "Adds numbers to songs in spotify playlists and albums.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Numberfy (Numbers in Spotify)
Tải xuống các tệp mở rộng Numberfy (Numbers in Spotify) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mlhcbpdinhgnjoenjaiimhjmckbiegig |
URL Chính Thức | https://chrome.google.com/webstore/detail/numberfy-numbers-in-spoti/mlhcbpdinhgnjoenjaiimhjmckbiegig |
Mô tả | Adds numbers to songs in spotify playlists and albums. |
Kích Thước Tệp | 62.92 KB |
Số Lần Cài Đặt | 59 |
Phiên Bản Hiện Tại | 1.46 |
Cập Nhật Lần Cuối | 2018-09-15 |
Ngày Phát Hành | 2018-09-15 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | LinusK |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |