CM
Size: a a a
CM
A
S
CM
CM
V
patch-package
?CM
S
S
CM
CM
S
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p id="test">wddwwdwd</p>
</body>
</html>
CM
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p id="test">wddwwdwd</p>
</body>
</html>
CM
CM
S
{
"manifest_version": 2,
"name": "Prison",
"version": "1.0.0",
"background": {
"scripts": ["jquery.js", "background.js"]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["jquery.js", "index.js"]
}
],
"browser_action": {
"default_icon": "icon.jpeg",
"default_popup": "index.html"
},
"permissions": [
"<all_urls>"
]
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p id="test">wddwwdwd</p>
<script src="index.js"></script>
</body>
</html>
console.log(document.querySelector("#test"));
S
CM
{
"manifest_version": 2,
"name": "Prison",
"version": "1.0.0",
"background": {
"scripts": ["jquery.js", "background.js"]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["jquery.js", "index.js"]
}
],
"browser_action": {
"default_icon": "icon.jpeg",
"default_popup": "index.html"
},
"permissions": [
"<all_urls>"
]
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p id="test">wddwwdwd</p>
<script src="index.js"></script>
</body>
</html>
console.log(document.querySelector("#test"));
S