Error in jquery.js file in chrome extension project -


i have strange error.

i developing chrome extension using 'chrome dev editor'. project using jquery. working fine after open jquery.js file shows errors

missing semicolon missing () invoking constructor

the project cannot loaded because of this.

i have not done modification in jquery.js file. dowloaded 'http://jquery.com/download/'.

here manifest.json

{   "manifest_version": 2,   "name": "textextn",   "short_name": "textextn",   "description": "",   "version": "0.0.1",   "minimum_chrome_version": "38",    "browser_action": {    "default_icon": "images/icon.png",    "default_popup": "html/popup.html"   },    "permissions": [    "activetab"    ],    "content_scripts": [     {       "matches": ["<all_urls>"],       "js": [ "scripts/jquery-1.12.0.js","scripts/welcome.js"         ]     } ]  } 


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -