-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcf2426
commit bd7f5a0
Showing
3 changed files
with
59 additions
and
59 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "Gitanest", | ||
"description": "gives Bhagavad Gita Slok whenever you click it!", | ||
"version": "21.10.1.1", | ||
"manifest_version": 2, | ||
|
||
"browser_action": { | ||
"default_popup": "popup.html", | ||
"default_icon": "logo.png" | ||
}, | ||
"icons": { | ||
"128": "logo.png" | ||
}, | ||
"permissions": ["activeTab"] | ||
} | ||
{ | ||
"name": "Gitanest", | ||
"description": "gives Bhagavad Gita Slok whenever you click it!", | ||
"version": "21.10.1.1", | ||
"manifest_version": 2, | ||
|
||
"browser_action": { | ||
"default_popup": "popup.html", | ||
"default_icon": "logo.png" | ||
}, | ||
"icons": { | ||
"128": "logo.png" | ||
}, | ||
"permissions": ["activeTab"] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Bhagavad Gita Slok</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
<body> | ||
<p id="sp">slok is loading...</p> | ||
<p>It's chapter number.verse number and meaning are :-</p> | ||
<p id="mp">loading...</p> | ||
<div class="footer">Made by Chirag Singhal</div> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Bhagavad Gita Slok</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
<body> | ||
<p id="sp">slok is loading...</p> | ||
<p>It's chapter number.verse number and meaning are :-</p> | ||
<p id="mp">loading...</p> | ||
<div class="footer">Made by Chirag Singhal</div> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
body { | ||
width: 750px; | ||
height: 350px; | ||
background-color: aliceblue; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
p { | ||
display: inner-flex; | ||
margin: auto 10px; | ||
font-size: 25px; | ||
color: blue; | ||
border-radius: 10px; | ||
border: 1px solid lightblue; | ||
padding: 10px; | ||
} | ||
|
||
#sp, | ||
#mp { | ||
font-weight: bold; | ||
} | ||
|
||
.footer { | ||
position: fixed; | ||
bottom: 0; | ||
} | ||
body { | ||
width: 750px; | ||
height: 350px; | ||
background-color: aliceblue; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
p { | ||
display: inner-flex; | ||
margin: auto 10px; | ||
font-size: 25px; | ||
color: blue; | ||
border-radius: 10px; | ||
border: 1px solid lightblue; | ||
padding: 10px; | ||
} | ||
|
||
#sp, | ||
#mp { | ||
font-weight: bold; | ||
} | ||
|
||
.footer { | ||
position: fixed; | ||
bottom: 0; | ||
} |