Chrome Extension and Jenkins URL's

落爺英雄遲暮 提交于 2021-02-10 19:32:50

问题


I'm currently trying to develop a chrome extension which is supposed to display data from different Jenkins servers. The url to the jenkins server is being entered by the user.

So basically what I need is being able to access any kind of jenkins url.

My problem is that Chrome's Content Security Policy only allows you to access domains which you've registered in the manifest.json like so:

"content_security_policy": "script-src 'self' http://localhost:8080/; object-src 'self'".

But since different users are going to enter different urls, I'd need to be able to change this policy dynamically, and I don't really know how to do that.


回答1:


You seem have a misconception as to what is needed to send a request to a random domain.

CSP directive script-src dictates where you can execute code from specifically by <script src="https://some.domain/script.js">. That, indeed, is something you can't whitelist.

To send GET/POST cross-site requests, you need a host permission, not a CSP modification.

There are 2 possible approaches:

  • Give yourself wide permissions, e.g. "*://*/*" or "<all_urls>". This will allow you to query anything at the cost of install-time warning "can read and modify data on all websites".
  • Use the optional permissions API. That way, you can avoid the install-time warning and prompt for elevated permissions as the extension is configured. This would make sense if this configuration needs to be done infrequently.

    Extra note: as of 2016-10-04, permissions API is not implemented in Firefox WebExtensions / Edge Extensions, so if portability is a concern, it's best avoided for new projects for now.




回答2:


You won't be able to dynamically change the manifest once the extension has been installed. Per Google https://developer.chrome.com/extensions/contentSecurityPolicy#relaxing-remote-script :

Generic wildcards such as https:, https://* and https://.com are not allowed; subdomain wildcards such as https://.example.com are allowed.

If you could ensure that the CI machines are all on same domain then it could work.



来源:https://stackoverflow.com/questions/28816374/chrome-extension-and-jenkins-urls

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!