Skip to content

Instantly share code, notes, and snippets.

View hoseindig's full-sized avatar
🎯
Focusing

hoseindig

🎯
Focusing
View GitHub Profile
@eliashussary
eliashussary / background.js
Last active February 26, 2024 18:52
chrome webrequest onBeforeRequest example
// 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);