You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

background.js 516B

1234567891011121314151617
  1. chrome.runtime.onInstalled.addListener(() => {
  2. console.log("Tiện ích đã được cài đặt!");
  3. });
  4. chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
  5. if (message.action === "PAGE_INFO") {
  6. console.log( message);
  7. chrome.storage.local.set({ pageInfo: message }, () => {
  8. console.log("Page info saved to local storage.");
  9. });
  10. // Send a response to the content script
  11. sendResponse({ status: "success", message: "Page info received and processed." });
  12. }
  13. });