You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
angularjs-batarang/inject.js

14 lines
401 B
JavaScript

// inject into the application context from the content script context
var inject = function () {
var script = window.document.createElement('script');
10 years ago
script.src = chrome.extension.getURL('hint.bundle.js');
document.head.appendChild(script);
};
// only inject if cookie is set
if (document.cookie.indexOf('__ngDebug=true') != -1) {
document.addEventListener('DOMContentLoaded', inject);
}