Browser Extensions Development (Chrome & Edge) · บทเรียน

ทำความเข้าใจโครงสร้าง Manifest V3

สำรวจไฟล์ manifest.json อย่างละเอียด พร้อมเรียนรู้เกี่ยวกับฟิลด์ที่จำเป็นและการกำหนดค่าทั่วไปสำหรับ Manifest V3

บทเรียน 1 จาก 411 ขั้นตอน

ทำความเข้าใจโครงสร้าง Manifest V3 เป็นบทเรียน Browser Extensions Development (Chrome & Edge) ฟรีบน CoddyKit นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Browser Extensions Development (Chrome & Edge) และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Browser Extensions Development (Chrome & Edge) มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

The Blueprint of Your Extension

Every browser extension starts with a core configuration file called manifest.json. Think of it as the blueprint or identity card for your extension.

This file tells the browser everything it needs to know: its name, version, what permissions it needs, and which files make up its different parts.

Introducing Manifest V3

Manifest V3 is the latest version of the extension platform, bringing significant changes focused on security, privacy, and performance.

All new extensions must use Manifest V3, and existing extensions are migrating. Understanding its structure is crucial for modern extension development.

Required Field: manifest_version

The manifest_version field is mandatory and tells the browser which set of APIs and security features your extension expects.

  • For Manifest V3, this value must always be 3.
  • It's the very first declaration in your manifest.json file.

Required Fields: name and version

These two fields are also essential for every extension:

  • name: This is the user-visible name of your extension. It appears in the browser's extension management page and in the web store.
  • version: This specifies the version of your extension, typically following semantic versioning (e.g., "1.0.0"). It helps users track updates.

Your First Manifest File

Let's see the absolute minimum needed for a valid Manifest V3 file. This simple JSON structure is the foundation for any extension you build.

{
  "manifest_version": 3,
  "name": "My Basic Extension",
  "version": "1.0"
}

Optional Field: description

While not strictly required, adding a description is highly recommended. It provides a short summary of what your extension does.

This description is visible to users in the browser's extension management page and is crucial for your listing in the Chrome Web Store or Edge Add-ons store.

Optional Field: icons

The icons field allows you to define images that represent your extension. Browsers use different sizes for various UI contexts:

  • Toolbar buttons (16x16, 24x24, 32x32 pixels)
  • Extension management page (48x48 pixels)
  • Web store listing (128x128 pixels)

Always provide a 128x128 icon for store listings.

Optional Field: action

The action field defines the behavior of your extension's toolbar button, often called the 'browser action' button. This is the icon next to the address bar.

It commonly points to an HTML file (a "popup") that appears when the button is clicked, allowing for quick user interaction with your extension's UI.

A More Detailed Manifest

Let's expand our manifest to include a description, icons, and an action popup. This gives your extension a clear identity and a basic interactive element.

{
  "manifest_version": 3,
  "name": "My Awesome Extension",
  "version": "1.0",
  "description": "A simple extension to do awesome things!",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "24": "icons/icon24.png",
      "32": "icons/icon32.png"
    },
    "default_title": "Click to open!"
  }
}

Quick Check on Manifest Fields

Based on what you've learned, identify the fields that are absolutely required in a Manifest V3 manifest.json file.

Manifest V3: Your Extension's Identity

We've explored the fundamental role of the manifest.json file, understanding it as the blueprint for your browser extension.

  • You learned about the three critical required fields: manifest_version (always 3), name, and version.
  • We also touched upon important optional fields like description, icons, and action, which define your extension's appearance and basic user interface.

Mastering the manifest file is the first step to building powerful and compliant browser extensions!

เริ่มต้นได้ฟรี

เรียนรู้ JavaScript ด้วย AI tutor — ฟรี

เขียนและเรียกใช้โค้ดจริงในเบราว์เซอร์ของคุณ รับความช่วยเหลือทันทีจาก AI tutor 24/7 และเรียนรู้ต่อจากที่คุณหยุดบนเว็บหรือในแอป

คอร์ส
12
บทเรียน
48

คำถามที่พบบ่อย

บทเรียน “ทำความเข้าใจโครงสร้าง Manifest V3” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “ทำความเข้าใจโครงสร้าง Manifest V3” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Browser Extensions Development (Chrome & Edge) ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Browser Extensions Development (Chrome & Edge) มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “ทำความเข้าใจโครงสร้าง Manifest V3”

สำรวจไฟล์ manifest.json อย่างละเอียด พร้อมเรียนรู้เกี่ยวกับฟิลด์ที่จำเป็นและการกำหนดค่าทั่วไปสำหรับ Manifest V3 คุณปฏิบัติ Browser Extensions Development (Chrome & Edge) ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Browser Extensions Development (Chrome & Edge) หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน Browser Extensions Development (Chrome & Edge) บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน

บทเรียน “ทำความเข้าใจโครงสร้าง Manifest V3” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน Browser Extensions Development (Chrome & Edge) นี้ได้ไหม

ได้ บทเรียน Browser Extensions Development (Chrome & Edge) ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. ทำความเข้าใจโครงสร้าง Manifest V3
  2. เว็บเวิร์กเกอร์บริการเบื้องหลัง
  3. สิทธิ์และการจับคู่โฮสต์
  4. การดำเนินการ ไอคอน และปุ่มแถบเครื่องมือ
← กลับไปที่ Browser Extensions Development (Chrome & Edge)