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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://petrovicstefan.rs และคุณลักษณะหลักของมันคือ "Web Extension that lets you gain new developer skills, every time you open a New Tab"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 30 Seconds of Knowledge

ดาวน์โหลดไฟล์ส่วนขยาย 30 Seconds of Knowledge ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
}