30 Seconds of Knowledge
Web Extension that lets you gain new developer skills, every time you open a New Tab
30 Seconds of Knowledge란 무엇입니까?
30 Seconds of Knowledge은(는) https://petrovicstefan.rs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Web Extension that lets you gain new developer skills, every time you open a New Tab"입니다.
확장 프로그램 스크린샷
30 Seconds of Knowledge 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Gain new developer skills every time you open a New Tab! Choose which programming languages you want to get better at in extension options and get smarter every time you open a New Tab. All you need is 30 seconds to read and understand snippets of code and improve your knowledge. Saw something useful? Just copy/paste it into your code and you're golden!
확장 프로그램 기본 정보
이름 | 30 Seconds of Knowledge |
ID | mmgplondnjekobonklacmemikcnhklla |
공식 URL | https://chromewebstore.google.com/detail/30-seconds-of-knowledge/mmgplondnjekobonklacmemikcnhklla |
설명 | Web Extension that lets you gain new developer skills, every time you open a New Tab |
파일 크기 | 1.67 MB |
설치 횟수 | 27,946 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2021-11-19 |
출시 날짜 | 2019-04-07 |
평점 | 4.58/5 총 89 개의 평점 |
개발자 | https://petrovicstefan.rs |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://30secondsofknowledge.petrovicstefan.rs |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Web Extension that lets you gain new developer skills, every time you open a New Tab", "version": "1.2.0", "name": "30 Seconds of Knowledge", "short_name": "30 SoK", "manifest_version": 2, "homepage_url": "https:\/\/30secondsofknowledge.com", "icons": { "32": "icon_32.png", "64": "icon_64.png", "128": "icon_128.png", "256": "icon_256.png" }, "permissions": [ "storage", "clipboardWrite" ], "browser_action": { "default_popup": "popup.html", "default_icon": "icon_32.png" }, "options_ui": { "page": "options.html" }, "background": { "page": "background.html" }, "chrome_url_overrides": { "newtab": "newtab.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "offline_enabled": true } |