AlarmDJ - Online Alarm Clock
Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice as an alarm sound.
Vad är AlarmDJ - Online Alarm Clock?
AlarmDJ - Online Alarm Clock är en Chrome-tillägg utvecklad av https://alarmdj.com, och dess huvudfunktion är "Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice as an alarm sound.".
Tilläggsskärmbilder
Ladda ner AlarmDJ - Online Alarm Clock-förlängningens CRX-fil
Ladda ner AlarmDJ - Online Alarm Clock-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
Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice. It can play YouTube videos on your TV as alarm using ChromeCast. Play mp3 files and other audio files as an alarm. Intuitive to use, run offline.
Grundläggande Information om Tillägg
Namn | AlarmDJ - Online Alarm Clock |
ID | cechfneaapliekdhfifoclboelgfaloc |
Officiell webbadress | https://chromewebstore.google.com/detail/alarmdj-online-alarm-cloc/cechfneaapliekdhfifoclboelgfaloc |
Beskrivning | Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice as an alarm sound. |
Filstorlek | 195 KB |
Antal Installationer | 1,168 |
Aktuell Version | 0.0.19 |
Senast Uppdaterad | 2019-03-19 |
Publiceringsdatum | 2019-03-19 |
Betyg | 4.33/5 Totalt 27 Betyg |
Utvecklare | https://alarmdj.com |
Betalningssätt | free |
Tilläggswebbplats | https://alarmdj.com/ |
URL till Sekretesspolicy Sidan | https://alarmdj.com/privacy |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "short_name": "__MSG_extensionShortName__", "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/alarmdj.com", "version": "0.0.19", "icons": { "16": "images\/icon-16x16.png", "32": "images\/icon-32x32.png", "48": "images\/icon-48x48.png", "70": "images\/icon-70x70.png", "96": "images\/icon-96x96.png", "144": "images\/icon-144x144.png", "150": "images\/icon-150x150.png", "230": "images\/icon-230x230.png" }, "browser_action": { "default_title": "__MSG_extensionName__" }, "offline_enabled": true, "permissions": [ "notifications", "power", "tabs", "https:\/\/alarmdj.com\/*", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.bundle.js" ], "css": [ "style.css" ] }, { "matches": [ "https:\/\/alarmdj.com\/*" ], "js": [ "content.alarm.clock.bundle.js" ], "run_at": "document_end" } ], "default_locale": "en", "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" } } |