I need help with problems loading my landing page. I keep getting this messages on my "inspector" in chrome -
Denying load of chrome-extension://bjgfdlplhmndoonmofmflcbiohgbkifn/js/lib/jquery-2.0.2.min.map. Resources must be listed in the web_accessible_resources manifest key in order to be loaded by pages outside the extension.
Denying load of chrome-extension://bjgfdlplhmndoonmofmflcbiohgbkifn/js/lib/backbone-min.map. Resources must be listed in the web_accessible_resources manifest key in order to be loaded by pages outside the extension.
GET chrome-extension://invalid/
This is the link for my website http://www.itayroisman.com
Please help me with this issue.
The Hootsuite chrome extension doesn't seem to be compatible with the latest build of chrome. Go to tools>extensions and click Developer mode. The id numbers come up on each of your extensions and you can match them to the errors in Developer Tools
I found another anwser may be OK.
Just remove this line from the top of jquery file
//@ sourceMappingURL=jquery-1.10.2.min.map If you check the source of Jquery 1.10.2, it has included source map line on the top. I hope you are not using Source Maps. For more details just check these links:
http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/ jQuery's jquery-1.10.2.min.map is triggering a 404 (Not Found) Alternate approach
Download the source map file from jquery downloads page and put jquery-1.10.2.min.map in the extension directory. Download uncompressed source code as well and put in the extension directory. Basically you need three files [SourceMap, Compressed, Uncompressed]. Add these map file path and uncompressed file paths to web_accesible resources.
I just had the same problem.
If you're not using the the sourcemap:
Open your jquery.js, remove the following line fro mthe top of the file:
//@ sourceMappingURL=jquery-2.0.3.min.map
If you do want the sourcemap:
Download code.jquery.com/yourfilename (see the comment in your jquery file, mentioned above)
Add a line line
"web_accessible_resources": [
"js/jquery-2.0.3.min.map"
],
To your manifest.json
Reload your extension.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With