Skip to content

Commit

Permalink
Merge pull request #11 from shadoath/sb-v3
Browse files Browse the repository at this point in the history
Manifest v3 with minor updates
  • Loading branch information
shadoath authored Dec 6, 2022
2 parents 3cd51ce + 161c530 commit 49f6a57
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
Archive.zip
LatTab.zip
images/logo.psd
images/logo.ai
Binary file modified images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 4 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
{
"manifest_version": 2,
"manifest_version": 3,
"name": "LatTab 2.0 - Latin proverbs and root words",
"short_name": "LatTab",
"version": "2.2.0",
"description": "Learn Latin - each time you open up a new tab.",
"version": "2.3.0",
"description": "Learn Latin - each time you open up a new tab",
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"scripts": ["lib/jquery-2.0.3.min.js"]
},
"options_page": "options.html",
"icons": { "128": "images/logo.png" },
"browser_action": {
"action": {
"default_icon": "images/logo.png",
"default_popup": "options.html"
},
Expand Down
2 changes: 1 addition & 1 deletion newtab.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<head>
<title>New LatTab</title>
<title>New LatTab 2.0</title>
<link rel="stylesheet" href="newtab.css">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<script type="text/javascript" src="/lib/jquery-2.0.3.min.js"></script>
Expand Down
15 changes: 10 additions & 5 deletions options.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
<html>
<head>
<title>LatTab Options</title>
<link rel="stylesheet" href="options_style.css">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<link rel="stylesheet" href="options_style.css" />
<link
href="https://fonts.googleapis.com/css?family=Playfair+Display"
rel="stylesheet"
/>
<script type="text/javascript" src="/lib/jquery-2.0.3.min.js"></script>
</head>
<body>
<h3>LatTab settings</h3>
<div class="options-container">
<div class="option">
<label>Root examples: <input type="checkbox" id="rootExamples"></label>
<label>Hide count: <input type="checkbox" id="hideCount"></label>
<label>
Root examples: <input type="checkbox" id="rootExamples" />
</label>
<label>Hide count: <input type="checkbox" id="hideCount" /></label>
</div>
</div>
<hr>
<hr />
<div class="options-container">
<h4>Reseting local storage</h4>
<button id="clear-favorites">Favorites</button>
Expand Down

0 comments on commit 49f6a57

Please sign in to comment.