SoundCloud DeepDark
SoundCloud Dark Theme
Vad är SoundCloud DeepDark?
SoundCloud DeepDark är en Chrome-tillägg utvecklad av motive, och dess huvudfunktion är "SoundCloud Dark Theme".
Tilläggsskärmbilder
Ladda ner SoundCloud DeepDark-förlängningens CRX-fil
Ladda ner SoundCloud DeepDark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Google Chrome extension for SOUNDCLOUD The extension adds a dark theme to the soundcloud, not provided by the developers of the project. Save eyes at night and allows the site to look aesthetically pleasing. The product is open source, you can find the code at https://github.com/sx-motive/soundcloud-deepdark Report an error or ask a question to the author Software / frontend developer - Denis Kunitsyn - https://t.me/sxmotive
Grundläggande Information om Tillägg
Namn | SoundCloud DeepDark |
ID | edooflagimepjnndabmcdlahbfpagjcl |
Officiell webbadress | https://chromewebstore.google.com/detail/soundcloud-deepdark/edooflagimepjnndabmcdlahbfpagjcl |
Beskrivning | SoundCloud Dark Theme |
Filstorlek | 14.48 KB |
Antal Installationer | 385 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2021-11-06 |
Publiceringsdatum | 2021-11-06 |
Betyg | 3.75/5 Totalt 4 Betyg |
Utvecklare | motive |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sx-motive/soundcloud-deepdark |
Hjälpsida URL | https://github.com/sx-motive/soundcloud-deepdark |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SoundCloud DeepDark", "description": "SoundCloud Dark Theme", "version": "1.0.1", "permissions": [], "icons": { "128": "logo.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/soundcloud.com\/*" ], "js": [ "background.js" ], "run_at": "document_start" } ], "browser_action": { "default_title": "SoundCloud DeepDark", "default_icon": "logo.png" }, "manifest_version": 2, "web_accessible_resources": [ "dark.css" ] } |