This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
// Simple extension to replace lolcat images from | |
// http://icanhascheezburger.com/ with loldog images instead. | |
chrome.webRequest.onBeforeRequest.addListener( | |
function(info) { | |
console.log("Cat intercepted: " + info.url); |