ส่วนขยายของ Chrome - รับเนื้อหา DOM


116

ฉันพยายามเข้าถึงเนื้อหา activeTab DOM จากป๊อปอัป นี่คือรายการของฉัน:

{
  "manifest_version": 2,

  "name": "Test",
  "description": "Test script",
  "version": "0.1",

  "permissions": [
    "activeTab",
    "https://api.domain.com/"
  ],

  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Chrome Extension test",
    "default_popup": "index.html"
  }
}

ฉันสับสนจริงๆว่าสคริปต์พื้นหลัง (หน้าเหตุการณ์ที่มีการคงอยู่: เท็จ) หรือ content_scripts เป็นวิธีที่จะไป ฉันได้อ่านเอกสารและโพสต์ SO อื่น ๆ ทั้งหมดแล้วและมันก็ยังไม่สมเหตุสมผลสำหรับฉัน

ใครช่วยอธิบายได้ไหมว่าทำไมฉันถึงใช้อันอื่นแทน

นี่คือ background.js ที่ฉันพยายาม:

chrome.extension.onMessage.addListener(
  function(request, sender, sendResponse) {
    // LOG THE CONTENTS HERE
    console.log(request.content);
  }
);

และฉันเพิ่งเรียกใช้สิ่งนี้จากคอนโซลป๊อปอัป:

chrome.tabs.getSelected(null, function(tab) {
  chrome.tabs.sendMessage(tab.id, { }, function(response) {
    console.log(response);
  });
});

ฉันได้รับ:

Port: Could not establish connection. Receiving end does not exist. 

UPDATE:

{
  "manifest_version": 2,

  "name": "test",
  "description": "test",
  "version": "0.1",

  "permissions": [
    "tabs",
    "activeTab",
    "https://api.domain.com/"
  ],

  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["content.js"]
    }
  ],

  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Test",
    "default_popup": "index.html"
  }
}

content.js

chrome.extension.onMessage.addListener(
  function(request, sender, sendResponse) {
    if (request.text && (request.text == "getDOM")) {
      sendResponse({ dom: document.body.innerHTML });
    }
  }
);

popup.html

chrome.tabs.getSelected(null, function(tab) {
  chrome.tabs.sendMessage(tab.id, { action: "getDOM" }, function(response) {
    console.log(response);
  });
});

เมื่อฉันเรียกใช้ฉันยังคงได้รับข้อผิดพลาดเดิม:

undefined
Port: Could not establish connection. Receiving end does not exist. lastError:30
undefined

คำตอบ:


184

คำว่า "background page", "popup", "content script" ยังทำให้คุณสับสน ผมขอแนะนำให้ดูเพิ่มเติมในเชิงลึกที่เอกสารขยายของ Google Chrome

เกี่ยวกับคำถามของคุณหากสคริปต์เนื้อหาหรือหน้าพื้นหลังเป็นวิธีที่จะไป:

สคริปต์เนื้อหา : สคริปต์เนื้อหาที่แน่นอน
เป็นส่วนประกอบเดียวของส่วนขยายที่สามารถเข้าถึง DOM ของเว็บเพจ

หน้าพื้นหลัง / ป๊อปอัป : อาจจะ (อาจสูงสุด 1 ในสอง)
คุณอาจต้องให้สคริปต์เนื้อหาส่งผ่านเนื้อหา DOM ไปยังหน้าพื้นหลังหรือป๊อปอัปเพื่อประมวลผลเพิ่มเติม


ขอย้ำอีกครั้งว่าขอแนะนำให้ศึกษาเอกสารที่มีอยู่อย่างรอบคอบมากขึ้น!
ที่กล่าวว่านี่คือส่วนขยายตัวอย่างที่ดึงเนื้อหา DOM บนหน้า StackOverflow และส่งไปยังหน้าพื้นหลังซึ่งจะพิมพ์ในคอนโซล:

background.js:

// Regex-pattern to check URLs against. 
// It matches URLs like: http[s]://[...]stackoverflow.com[...]
var urlRegex = /^https?:\/\/(?:[^./?#]+\.)?stackoverflow\.com/;

// A function to use as callback
function doStuffWithDom(domContent) {
    console.log('I received the following DOM content:\n' + domContent);
}

// 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);
    }
});

content.js:

// Listen for messages
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
    // If the received message has the expected format...
    if (msg.text === 'report_back') {
        // Call the specified callback, passing
        // the web-page's DOM content as argument
        sendResponse(document.all[0].outerHTML);
    }
});

manifest.json:

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

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

  "permissions": ["activeTab"]
}

6
@solvingPuzzles: chrome.runtime.sendMessageส่งข้อความไปยัง BackgroundPage และไปยัง Popups chrome.tabs.sendMessageส่งข้อความไปยัง ContentScripts
gkalpak

23
ลดลงเนื่องจากคำตอบนี้ไม่ได้อธิบายวิธีรับ ACTUAL DOM จากแท็บปัจจุบัน
John Paul Barbagallo

2
@JohnPaulBarbagallo: คำถามเกี่ยวกับการรับเนื้อหา DOM ไม่ใช่เกี่ยวกับการเข้าถึง / จัดการ DOM จริง ฉันคิดว่าคำตอบของฉันทำได้ (และคนอื่น ๆ ก็คิดแบบเดียวกัน) ถ้าคุณมีทางออกที่ดีกว่านี้โพสต์เป็นคำตอบ หากคุณมีข้อกำหนดอื่นให้โพสต์เป็นคำถามใหม่ ไม่ว่าในกรณีใดขอบคุณสำหรับข้อเสนอแนะ :)
gkalpak

2
@zoltar: พิมพ์ในคอนโซลของหน้าพื้นหลัง
gkalpak

2
ฉันมี copy / paster คำตอบนี้ แต่ไม่สามารถรับ console.log จากสคริปต์เนื้อหาได้ ช่วยด้วย!
ClementWalter

72

คุณไม่จำเป็นต้องใช้ข้อความที่ส่งผ่านเพื่อรับหรือแก้ไข DOM ฉันใช้chrome.tabs.executeScriptแทน ในตัวอย่างของฉันฉันใช้สิทธิ์ activeTab เท่านั้นดังนั้นสคริปต์จึงทำงานบนแท็บที่ใช้งานอยู่เท่านั้น

ส่วนหนึ่งของ manifest.json

"browser_action": {
    "default_title": "Test",
    "default_popup": "index.html"
},
"permissions": [
    "activeTab",
    "<all_urls>"
]

index.html

<!DOCTYPE html>
<html>
  <head></head>
  <body>
    <button id="test">TEST!</button>
    <script src="test.js"></script>
  </body>
</html>

test.js

document.getElementById("test").addEventListener('click', () => {
    console.log("Popup DOM fully loaded and parsed");

    function modifyDOM() {
        //You can play with your DOM here or check URL against your regex
        console.log('Tab script:');
        console.log(document.body);
        return document.body.innerHTML;
    }

    //We have permission to access the activeTab, so we can call chrome.tabs.executeScript:
    chrome.tabs.executeScript({
        code: '(' + modifyDOM + ')();' //argument here is a string but function.toString() returns function's code
    }, (results) => {
        //Here we have just the innerHTML and not DOM structure
        console.log('Popup script:')
        console.log(results[0]);
    });
});

1
ทำงานได้อย่างสมบูรณ์แบบ! ขอบคุณ. ฉันไม่รู้ว่าทำไม แต่ฉันไม่สามารถทำให้โซลูชันที่ยอมรับได้ผลสำหรับฉัน
goodfellow

คำแถลงของคุณที่คุณใช้การactiveTabอนุญาตเท่านั้นไม่ถูกต้อง คุณได้รับอย่างชัดเจนนอกเหนือไปจาก<all_urls> activeTab
มักเย็น

1
test.js เป็นสคริปต์ที่คุณรวมไว้ใน HTML ของเพจดังนั้นฉันไม่แน่ใจว่าคุณต้องการสิทธิ์ใด ๆ
Scott Baker

11

สำหรับผู้ที่ลองคำตอบ gkalpak แล้วไม่ได้ผล

โปรดทราบว่า chrome จะเพิ่มสคริปต์เนื้อหาลงในหน้าที่จำเป็นก็ต่อเมื่อส่วนขยายของคุณเปิดใช้งานในระหว่างการเปิดตัว Chrome และขอแนะนำให้รีสตาร์ทเบราว์เซอร์หลังจากทำการเปลี่ยนแปลงเหล่านี้


1
วันนี้ช่วยฉันไว้
Romain Derie
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.