freeCodeCamp.org Code Radio
Code Radio. 24/7 music designed for coding
Vad är freeCodeCamp.org Code Radio?
freeCodeCamp.org Code Radio är en Chrome-tillägg utvecklad av NoveltyLab.io, och dess huvudfunktion är "Code Radio. 24/7 music designed for coding".
Tilläggsskärmbilder
Ladda ner freeCodeCamp.org Code Radio-förlängningens CRX-fil
Ladda ner freeCodeCamp.org Code Radio-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
Credit to freeCodeCamp.org Code Radio Origin: https://coderadio.freecodecamp.org/ 24/7 beats to help you concentrate while you work 💻 Curated by Los Angeles DJ/producer @TreblesandBlues 😇 No commercials to interrupt your flow
Grundläggande Information om Tillägg
Namn | freeCodeCamp.org Code Radio |
ID | heeimafmfaadaihgdhfkfgdoileaddef |
Officiell webbadress | https://chromewebstore.google.com/detail/freecodecamporg-code-radi/heeimafmfaadaihgdhfkfgdoileaddef |
Beskrivning | Code Radio. 24/7 music designed for coding |
Filstorlek | 13.68 KB |
Antal Installationer | 81 |
Aktuell Version | 1.2.0 |
Senast Uppdaterad | 2020-11-22 |
Publiceringsdatum | 2020-11-22 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | NoveltyLab.io |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://coderadio.freecodecamp.org/ |
Hjälpsida URL | https://github.com/maplerichie/fcc_radio_chrome_ext |
URL till Sekretesspolicy Sidan | http://noveltylab.io/privacy |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "freeCodeCamp.org Code Radio", "description": "Code Radio. 24\/7 music designed for coding", "version": "1.2.0", "manifest_version": 2, "permissions": [ "notifications", "background", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Code Radio", "default_icon": "images\/16.png", "default_popup": "popup.html" }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } } |