Skip to content

Instantly share code, notes, and snippets.

View mldyh's full-sized avatar
😉

Maulidiyah Nur mldyh

😉
  • Indonesia
View GitHub Profile
@bmaupin
bmaupin / free-database-hosting.md
Last active July 27, 2024 17:01
Free database hosting
@bmaupin
bmaupin / free-backend-hosting.md
Last active July 27, 2024 17:01
Free backend hosting
@danharper
danharper / background.js
Last active June 29, 2024 19:32
Bare minimum Chrome extension to inject a JS file into the given page when you click on the browser action icon. The script then inserts a new div into the DOM.
// this is the background code...
// listen for our browerAction to be clicked
chrome.browserAction.onClicked.addListener(function (tab) {
// for the current tab, inject the "inject.js" file & execute it
chrome.tabs.executeScript(tab.ib, {
file: 'inject.js'
});
});