Skip to content
This repository has been archived by the owner on Mar 28, 2021. It is now read-only.

Commit

Permalink
Initialized! And it works for the New York Times frontpage!
Browse files Browse the repository at this point in the history
  • Loading branch information
vonbearshark committed Sep 19, 2015
0 parents commit 99c8388
Show file tree
Hide file tree
Showing 8 changed files with 935 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
If you're interested in contributing, just clone it down, branch, make the changes, and submit a PR!

8 changes: 8 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*

----------------------------------------------------------------------------
"THE BEER-WARE LICENSE" (Revision 42):
As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you think
this stuff is worth it, you can buy me a beer in return. Jason Naughton
---------------------------------------------------------------------------- */
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Infinite Viral

---

Viral News, all the time.

Build using professor Bill Laboon's Infinite Viral: [source](https://github.com/laboon/viral_gen), [site](http://infiniteviral.com/)

---

Install

---
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
872 changes: 872 additions & 0 deletions infiniteViral.js

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"manifest_version": 2,

"name": "Infinite Viral",
"description": "Viral news all the time.",
"version": "1.0",

"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["infiniteViral.js"],
"run_at": "document_end"
}
]
}
8 changes: 8 additions & 0 deletions popup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
* {

}

body {
background-color: #2196F3;
color: #E3F2FD;
}
10 changes: 10 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!doctype html>
<html>
<head>
<title>Infinite Viral</title>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body>
<h1>Infinite Viral</h1>
</body>
</html>

0 comments on commit 99c8388

Please sign in to comment.