Framework
Content Scripts

Content Scripts

Content scripts run in the context of web pages in an isolated world. This allows multiple content scripts from various extensions to coexist without conflicting with each other's execution and to stay isolated from the page's JavaScript.

A script that ends with .ts will not have front-end runtime (react/vue/svelte) bundled with it and won't be treated as a ui script, while a script that ends in .tsx, .vue or .svelte, will be.

Use cases:

Adding a single content script

🚨

Since Plasmo's default Typescript configuration treats all source files as modules, if you don't have any imports or exports in your code, you'll have to add an export {} line at the start of your file. (You will see this warning when creating your first content script!)

Create a content.ts file, export an empty object and hack away!

content.ts
export {}
console.log(
  "You may find that having is not so pleasing a thing as wanting. This is not logical, but it is often true."
)

Reload your extension, open a web page, then open its inspector:

content-script-spock-quote

See with-content-script (opens in a new tab) for a full example.

Adding multiple content scripts

Create a contents directory for multiple content scripts, and add your content scripts there. Make sure their names describe what they do!

See with-many-content-scripts (opens in a new tab) for an example.

Config

Sometimes, you'll want to run a content script on certain pages. You can provide a custom content script configuration by exporting a config object from your content script:

content.ts
import type { PlasmoCSConfig } from "plasmo"
 
export const config: PlasmoCSConfig = {
  matches: ["<all_urls>"],
  all_frames: true
}

Working with this configuration object is a breeze thanks to the exported PlasmoCSConfig type 🥳.

To learn more about the config and each property, check out Chrome's official documentation (opens in a new tab).

Injecting into the main world

To modify the window object from your content script, you must inject code into the "main world."

Starting from Plasmo v0.65.0, Plasmo content script may specify a world property within the config:

content.ts
import type { PlasmoCSConfig } from "plasmo"
 
export const config: PlasmoCSConfig = {
  matches: ["<all_urls>"],
  world: "MAIN"
}

The above script will be injected into the main world.

To manually inject a main world script, use the chrome.scripting.executeScript API. First, manually add the scripting permission in your package.json's 'manifest.permissions' array:

package.json
{
  ...
  "manifest" : {
    "permissions": ["scripting"]
  }
}

Then, inject your content script into the main world by calling chrome.scripting.executeScript from your background service worker:

background.ts
chrome.scripting.executeScript(
  {
    target: {
      tabId // the tab you want to inject into
    },
    world: "MAIN", // MAIN to access the window object
    func: windowChanger // function to inject
  },
  () => {
    console.log("Background script got callback after injection")
  }
)

For the func key, you can pass in a TS function from your project. It will be transpiled into JS when your extension bundles. You may also use the files key to inject a file from the root of the built bundle.

🚨

The scope of the func is tightly encapsulated. You will not be able to use variables declared outside its scope or any imported variables directly within the function. You can, however, use variables passed down to the args property. Ensure only JSON-serializable values are used.

See with-main-world (opens in a new tab) for an example.

Fetching external API and CORS

Because content scripts run within the context of a web page, they are subject to the same-origin policy. To mitigate CORS restrictions, you can use the Plasmo Messaging API to proxy the request via your background service worker.

Importing resources

To import external assets into your content script, you can use the url: scheme:

import myFile from "url:./path/to/my/file/something.js"

The url: scheme will automatically resolve the something.js asset and add it to the web_accessible_resources declaration in the built bundle. The above myFile variable will be a string containing the URL to the asset:

> console.log(myFile)
 
chrome-extension://<your chrome ext id>/something.eb20bc99.js?1656000646313
 
> console.log(myFile.split("/").pop().split("?")[0])
 
something.eb20bc99.js

Alternatively, you can use the data-base64 or the data-text scheme to import and embed the asset directly into your code. For small assets, these schemes should work well.

🚨