/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/projects/shell-browser/src/app/ng-validate.ts
16 строк
500 B
hawkgs
refactor(devtools): rename detect angular script name
02 янв 2026, 10:20
02 янв 2026, 10:20
eb5f5b6
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /// <reference types="chrome"/> if (document.contentType === 'text/html') { const script = document.createElement('script'); script.src = chrome.runtime.getURL('app/detect_angular_bundle.js'); document.documentElement.appendChild(script); document.documentElement.removeChild(script); }