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

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -