The best chrome update ever. Now you don’t need to wait till internet connection is down.
Tag Archives: chrome
ChromeDevTools: debugging tip: right-click > “continue to here”
That’s what we all have been waiting for ages
Remove some URLs from Chrome autocomplete history
Sometimes misprint could lead to problems with your location bar autocomplete (it will suggest you wrong varian first). For example you accidentally visited gist.gihub.com
(note the missing t), and now that URL auto completes each time you start typing gist.…
.
It’s really annoying. How can we remove this URL? In case if we don’t want to remove everything, just exact URL.
I found really nice answer here. All you need – just select the URL and press [Shift] + [Delete]. (for Mac is [Fn] + [Shift] + [Delete]).
Google Chrome crashe log
It not very obvious where to find crashes logs in Chrome. First thing that you need to do is make sure that you have logging option ON, you should have check on this option in Chrome setting:
Then you can go to
chrome://crashes
Taken from stackoverflow, thanks Mahai.
Еще немного вкусного от Chrome для разработчиков
- Быстрое переключение между файлами
- Поддержка мультикурсора
- Pretty Print
Chrome clear DNS cache
Found something new for myself when followed by chrome://net-internals.
To clean-up DNS cache you should just select DNS from dropdown and after click the button “Clear host cache”:
Оптимизируем AngularJS. Подробный разбор.
Вольный перевод статьи “Improving Angular web app performance example“. Трактат довольно фундаментальный. Большая часть методик оценки производительности подойдет для любого веб-приложения (не только AngularJS).
Состоит из следующих разделов:
- Пример не оптимизированного приложения
- Поверхностная оценка производительности
- Профилирование в Chrome с использованием сниппетов
- Оптимизация цикла дайджеста
- Использование директивы bind-once
- Избавляемся от ng-repeat
- Ускоряем начальный рендеринг
- Разбиваем “тяжелые” компоненты на небольшие части
- Перекладываем вычисления на WebWorkers
- Оптимизация процесса выделения памяти
- Изоляция профиля памяти
- Вычисление только по запросу
- Минимизация наблюдаемых объектов
- Выводы
JavaScript сниппеты в Chrome
Еще одна прекрасная вещь внезапно обнаруженная мной в Chrome – это возможность создания JavaScript сниппетов – кусочков кода, которые можно будет выполнить в любой момент на странице.
Editing breakpoints in Chrome devtools
Suddenly found out that Chrome has possibility to “edit breakpoint” or other words – to add extra behaviour for it: like stop only for special condition, output console.log, etc.
Blackbox JavaScript Source Files
Probably you already know that Chrome now allows to put script source file to blackbox (or simply to ignore it during debug). It helps to avoid jumping inside 3rd party library and debugging it instead of focusing on own code.