This file contains 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
// ==UserScript== | |
// @name sefaratNotifier | |
// @namespace aisus | |
// @include about:addons | |
// @include https://ais.usvisa-info.com/*/niv/schedule/*/payment | |
// @version 0.1 | |
// @grant none | |
// ==/UserScript== | |
var notifPlayer = document.createElement('AUDIO') | |
notifPlayer.src = 'https://dl.dropbox.com/u/7079101/coin.mp3' |
This file contains 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
// ==UserScript== | |
// @name uscisNotifier | |
// @namespace uscis | |
// @include about:addons | |
// @include https://egov.uscis.gov/casestatus/mycasestatus.do?appReceiptNum=* | |
// @version 0.1 | |
// @grant none | |
// ==/UserScript== | |
var notifPlayer = document.createElement('AUDIO') | |
notifPlayer.src = 'https://dl.dropbox.com/u/7079101/coin.mp3' |
This file contains 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
// ==UserScript== | |
// @name rescheduleNotifier | |
// @namespace reaisus | |
// @include about:addons | |
// @include https://ais.usvisa-info.com/*/niv/schedule/*/payment | |
// @version 0.1 | |
// @grant none | |
// ==/UserScript== | |
var notifPlayer = document.createElement('AUDIO') | |
notifPlayer.src = 'https://dl.dropbox.com/u/7079101/coin.mp3' |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://fb.me/react-15.1.0.js"></script> | |
<script src="https://fb.me/react-dom-15.1.0.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://fb.me/react-15.1.0.js"></script> | |
<script src="https://fb.me/react-dom-15.1.0.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://fb.me/react-15.1.0.js"></script> | |
<script src="https://fb.me/react-dom-15.1.0.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> |
This file contains 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
import React, { Component, createContext } from 'react'; | |
import './App.css'; | |
const themes = { | |
light: { | |
color: '#000000', | |
background: '#eeeeee', | |
}, | |
dark: { | |
color: '#ffffff', |