Dark Mode Sync
Sync dark mode with websites
Vad är Dark Mode Sync?
Dark Mode Sync är en Chrome-tillägg utvecklad av Eric Chen, och dess huvudfunktion är "Sync dark mode with websites".
Tilläggsskärmbilder
Ladda ner Dark Mode Sync-förlängningens CRX-fil
Ladda ner Dark Mode Sync-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
Make websites that support dark mode match your system's dark mode. Supported websites: * Youtube * Reddit * Stack Overflow * Twitter * Twitch
Grundläggande Information om Tillägg
Namn | |
ID | hpioldggkhofifecekhgeoepibppmedn |
Officiell webbadress | https://chrome.google.com/webstore/detail/hpioldggkhofifecekhgeoepibppmedn |
Beskrivning | Sync dark mode with websites |
Filstorlek | 19.13 KB |
Antal Installationer | 11 |
Aktuell Version | 0.4 |
Senast Uppdaterad | 2020-10-01 |
Publiceringsdatum | 2020-05-06 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Eric Chen |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://docs.google.com/document/d/1jgmA2stM6D2Z13xgw_KcJH8si77YOcmG0lK4Jx-BvrI/edit |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dark Mode Sync", "version": "0.4", "description": "Sync dark mode with websites", "browser_action": { "default_icon": { "32": "logo32.png", "128": "logo128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "youtube.js" ] }, { "matches": [ "https:\/\/*.reddit.com\/*" ], "js": [ "reddit.js" ] }, { "matches": [ "https:\/\/*.stackoverflow.com\/*" ], "js": [ "stackoverflow.js" ] }, { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "twitter.js" ] }, { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "twitch.js" ] } ], "manifest_version": 2 } |