web-dev-qa-db-ja.com

chrome extensionを介してDOM要素にアクセスします

WebページからいくつかのDOM要素にアクセスしようとしています。

<html>
  <button id="mybutton">click me</button>
</html>

chrome extension:

chrome.browserAction.onClicked.addListener(function(tab) {
    var button = document.getElementById("mybutton");
    if(button == null){
        alert("null!");
    }
    else{
        alert("found!");
    }
});

拡張機能をクリックすると、ポップアップに「null」と表示されます。私のmanifest.json:

{
    "name": "HackExtension",
    "description": "Hack all the things",
    "version": "2.0",
    "permissions": [
    "tabs", "http://*/*"
    ],
    "background": {
    "scripts": ["contentscript.js"],
    "persistent": false
    },
    "browser_action": {
    "scripts": ["contentscript.js"],
    "persistent": false
    },
    "manifest_version": 2
}
14
TheChosenOne

解決策:マニフェストファイル、バックグラウンドスクリプト、およびコンテンツスクリプトが必要です。これは、ドキュメントで使用する必要があることと、その使用方法が明確ではありません。完全なdomのアラートについては、 ここ を参照してください。私のように、初心者には役に立たないスニペットだけでなく、実際に機能する完全なソリューションを見つけるのに苦労しているため、特定のソリューションを含めました。

manifest.json

{
    "manifest_version": 2,
    "name":    "Test Extension",
    "version": "0.0",

    "background": {
        "persistent": false,
        "scripts": ["background.js"]
    },
    "content_scripts": [{
        "matches": ["file:///*"],
        "js":      ["content.js"]
    }],
    "browser_action": {
        "default_title": "Test Extension"
    },

    "permissions": ["activeTab"]
}

content.js

/* Listen for messages */
chrome.runtime.onMessage.addListener(function(msg, sender, sendResponse) {
    /* If the received message has the expected format... */
    if (msg.text && (msg.text == "report_back")) {
        /* Call the specified callback, passing 
           the web-pages DOM content as argument */
    sendResponse(document.getElementById("mybutton").innerHTML);
    }
});

background.js

/* Regex-pattern to check URLs against. 
   It matches URLs like: http[s]://[...]stackoverflow.com[...] */
var urlRegex = /^file:\/\/\/:?/;

/* A function creator for callbacks */
function doStuffWithDOM(element) {
    alert("I received the following DOM content:\n" + element);
}

/* When the browser-action button is clicked... */
chrome.browserAction.onClicked.addListener(function(tab) {
    /*...check the URL of the active tab against our pattern and... */
    if (urlRegex.test(tab.url)) {
        /* ...if it matches, send a message specifying a callback too */
        chrome.tabs.sendMessage(tab.id, { text: "report_back" },
                                doStuffWithDOM);
    }
});

index.html

<html>
  <button id="mybutton">click me</button>
</html>

Index.htmlをどこかに保存し、他の3つのファイルを含む拡張機能としてフォルダーにロードします。 index.htmlを開き、拡張ボタンを押します。 「クリックしてください」と表示されます。

33
TheChosenOne