“JQuery Chrome Extension” Kod odpowiedzi

Czy możemy dodać jQuery do kodu JS Chrome Extension JS

You can just put jquery.js into extension folder and include it in the manifest:

{
  "name": "My extension",
  ...
  "content_scripts": [
    {
      "matches": ["http://www.google.com/*"],
      "css": ["mystyles.css"],
      "js": ["jquery.js", "myscript.js"]
    }
  ],
  ...
}
You don't need to worry about conflicts with jQuery on a parent page as content scripts are sandboxed.
Ankur

JQuery Chrome Extension

"content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",

Odpowiedzi podobne do “JQuery Chrome Extension”

Pytania podobne do “JQuery Chrome Extension”

Więcej pokrewnych odpowiedzi na “JQuery Chrome Extension” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu