Chrome Extension : Access DOM after chrome.tabs.update
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: My aim is to search for a div by id if it exists in all languages my site supports. manifest.json { "manifest_version": 2, "name": "Hello World!", "description": "This extension is to check if link is not visible when it should not :)", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "jquery-1.11.1.min.js"], "matches": [ "http://*/*", "https://*/*"] }], "permissions": [ "tabs", "http://*/*", "https://*/*" ] } popup.html - <html> <script type="text/javascript"