-
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
0 parents
commit 8cea5c2
Showing
8 changed files
with
73 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
bower_components |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "save-links-extension", | ||
"authors": [ | ||
"FelipeBarrosCruz <[email protected]>" | ||
], | ||
"description": "This extension will save anc crypt links", | ||
"main": "manifest.json", | ||
"keywords": [ | ||
"save", | ||
"private", | ||
"links", | ||
"chrome", | ||
"extension" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://github.com/FelipeBarrosCruz/safe-private-saver", | ||
"private": true, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"angular": "^1.6.2", | ||
"bootstrap": "^3.3.7" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!doctype html lang="en-US"> | ||
<html> | ||
<head> | ||
<title>SPS - Safe Private Saver</title> | ||
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<h1>Safe Private Saver</h1> | ||
<button id="checkPage" class="btn btn-primary btn-xs">Check this page now!</button> | ||
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script> | ||
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script> | ||
<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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "SPS - Safe Private Saver", | ||
"description": "This extension will save anc crypt links", | ||
"version": "1.0", | ||
"browser_action": { | ||
"default_icon": "icon.png", | ||
"default_popup": "index.html" | ||
}, | ||
"permissions": [ | ||
"activeTab", | ||
"storage" | ||
] | ||
} |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
'use strict' | ||
(function (angular) { | ||
|
||
function construct () { | ||
console.log('loaded') | ||
} | ||
|
||
return document.addEventListener('DOMContentLoaded', construct) | ||
})(angular) |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/* SPS - Safe Private Saver Extension Stylesheet */ | ||
|
||
body { | ||
width: 300px; | ||
} |