9951 explained code solutions for 126 technologies


chrome-extensionLoad content script for specific pages


{
 "name": "My",
 // ...
 "content_scripts": [
   {
     "matches": ["https://example.org/*"],
     "js": ["script.js"]
   }
 ],
 // ...
}ctrl + c
"name": "My"

name of the extension for manifest.json

matches

on what pages should we load content script

://example.org/*

load content script all pages of example.org domain

script.js

name of the script file to load (should be placed in the same dir as manifest.json)