etc/프로그래밍
Chrome Extension - Inject with static declarations
칸타렌서
2021. 9. 27. 12:49
728x90
반응형
특정 페이지 접근시 자동으로 실행
Automatically run when accessing a specific page.
{
"name": "AAA",
...
"content_scripts": [
{
"matches": ["http://*.nytimes.com/*"],
"css": ["myStyles.css"],
"js": ["contentScript.js"]
}
],
...
}
https://developer.chrome.com/docs/extensions/mv3/content_scripts/
Content scripts - Chrome Developers
An explanation of content scripts and how to use them in your Chrome Extension.
developer.chrome.com
728x90
반응형