what are content scripts in chrome inspector

后端 未结 1 1779
温柔的废话
温柔的废话 2021-02-12 18:04

While this could be a very basic thing, I can\'t seem to find an answer to this one. I see a lot of discussion about content scripts. When I open web inspecto

1条回答
  •  你的背包
    2021-02-12 18:23

    In Google Chrome, content scripts are JavaScript files that are part of browser extensions. They operate on the web page much like regular javascript does, but from a protected scope (Google calls it an "Isolated World").

    Content scripts have a few more privileges than ordinary javascript and, for that reason, content-script JS and page JS cannot ordinarily interact with each other.

    When looking at that Content Scripts tab, you will see both the scripts added by any extensions (or by userscripts which are compiled into extensions in Chrome), and also content scripts that are built-in parts of the browser, specifically the API that extensions can use.

    Content script listing


    You can match extensions to those "random numbers" by opening the extensions tab (chrome://chrome/extensions), and activating Developer mode:

    0 讨论(0)
提交回复
热议问题