Восстановили номер шага, прошло 3.822 cек lib.js:474:14
Черновик загружен за 3.822 cек lib.js:492:12
Сценарий из «https://chat.mos.ru/client/scripts/script.js?yaCounter=32628510» был загружен, хотя его MIME-тип («text/html») не является допустимым для JavaScript.
021201
CIT_INFO: User authorized script.js:10:13
isSiteInIframe Permission denied to access property "document" on cross-origin object 2 sovetnik-inject-content.min.js:2:2356
Ошибка карты кода: Error: request failed with status 404
URL ресурса:
https://js-pgu.mos.ru/co..._v3/jquery/jquery.min.jsURL карты кода: jquery.min.map
General source map error reporting
If you do see a problem, a message will appear in the webconsole. This message will show an error message, the resource URL, and the source map URL:
Error from invalid JSON
Here, the resource URL tells us that bundle.js mentions a source map, and the source map URL tells us where to find the source map data (in this case, relative to the resource). The error tells us that the source map is not JSON data — so we're serving the wrong file.
There are a few common ways that source maps can go wrong; they are detailed in the following sections.
Source map missing or inaccessible
The source map resource can be missing or inaccessible.
Source map file is missing
The fix here is to make sure the file is being served and is accessible to the browser
Invalid source map
The source map data can be invalid — either not a JSON file at all, or with an incorrect structure. Typical error messages here are:
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
Error: "version" is a required argument
Error: "version" is a required argument
Original source missing
An original source may be missing. You may encounter this when trying to open one of the original sources in the debugger. The message looks a little different in this case:
Debugger source tab showing the error
In this case, the error will also be displayed in the source tab in the debugger:
Debugger source tab showing the error
NetworkError when attempting to fetch resource
A bug in Firefox prevents it from loading source maps for web extensions.
See Bug 1437937: WebExtensions Doesn't Find Source Maps for details.
Source-Map-Fehler: TypeError: NetworkError when attempting to fetch resource.
Ressourcen-Adresse: moz-extension://c7f0f003-4fcf-49fd-8ec0-c49361266581/background.js
Source-Map-Adresse: background.js.map
The only workaround is to manually change the map URL to a public one (http://localhost:1234/file.map.js) and start a local webserver at this port.
Found a problem with this page?
Edit on GitHub
Source on GitHub
Report a problem with this content on GitHub
Want to fix the problem yourself? See our Contribution guide.
Last modified: Feb 18, 2022, by MDN contributors