ページのタイトルに特定のテキストが含まれている場合、ロードされたページにHTMLコードを追加するにはどうすればよいですか?
Chrome拡張機能は私にとって新たな基盤であり、あなたの助けを大いに感謝します。
次のコードを参照して、HTMLコードを追加できます。
manifest.json
このファイルは、コンテンツスクリプトを拡張機能に登録します。
{
"name":"Inject DOM",
"description":"http://stackoverflow.com/questions/14068879",
"version":"1",
"manifest_version":2,
"content_scripts": [
{
"matches": ["http://www.google.co.in/*","https://www.google.co.in/*"],
"js": ["myscript.js"]
}
]
}
myscript.js
Google
ページにボタンを追加するための簡単なスクリプト
// Checking page title
if (document.title.indexOf("Google") != -1) {
//Creating Elements
var btn = document.createElement("BUTTON")
var t = document.createTextNode("CLICK ME");
btn.appendChild(t);
//Appending to DOM
document.body.appendChild(btn);
}
Output
目的のページに追加されたボタンが表示されます
@Sudarshanの答えはページの特異性を説明します、すばらしいですが、追加されたコメントはどうですか?既存のコンテンツを変更したり、ページ上にコンテンツを作成したりするために、彼が見逃したことをより簡単で実用的な方法で行う方法は次のとおりです。
変更する
単一アイテムの変更:
document.getElementById("Id").innerHtml = this.innerHtml + "<some code here>";
または属性を変更するには:
document.getElementById("Id").class = "classname";
//or ->
document.getElementById("Id").style.color = "#a1b2c3";
複数行のコードを追加するには、次の手順を実行します。
document.getElementById("Id").innerHtml = this.innerHtml + `
<some code here> <!-- Line 1 -->
and we're on multiple lines!` + "variables can be inserted too!" + ` <!-- Line 2 -->
<this code will be inserted directly **AS IS** into the DOM <!-- Line 3 -->
`
;
作成する
大規模なコードインジェクション(しばらく前のコーディングプロジェクトの例) insertAdjacentHtml API を参照してください。
var bod = document.getElementsByTagName('body')[0];
bod.insertAdjacentHTML('afterbegin', `
<div class="Boingy" id="Boingy">
<div class="Boihead" id="BoiHead">
<div class="deXBox" id="deXBox">
<div class="Tr-Bl_Button" style="height: 25px;width: 2px;margin-left: 11.65px;background-color: gray;transform: rotate(45deg);-ms-transform: rotate(45deg);-webkit-transform: rotate(45deg);Z-index: 1;">
<div class="Tl-Br_Button" style="height: 25px;width: 2px;background-color: gray;transform: rotate(90deg);-ms-transform: rotate(90deg);-webkit-transform: rotate(90deg);Z-index: 2;">
</div>
</div>
</div>
</div>
<embed id="IframeThingyA" src="` + "url" + `" type="text/html">
</embed>
</div>
`);
参照: