Menyuntikkan skrip konten ke halaman web menggunakan skrip API (ekstensi chrome)

const tabId = getTabId();chrome.scripting.executeScript(    {      target: {tabId: tabId},      files: ['script.js'],    },    () => { ... });
Confused Crossbill