Skip to content

Commit

Permalink
Init project
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeBarrosCruz committed Feb 28, 2017
0 parents commit 8cea5c2
Show file tree
Hide file tree
Showing 8 changed files with 73 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bower_components
29 changes: 29 additions & 0 deletions bower.json
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"
}
}
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.
15 changes: 15 additions & 0 deletions index.html
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>
14 changes: 14 additions & 0 deletions manifest.json
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 added options.html
Empty file.
9 changes: 9 additions & 0 deletions script.js
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)
5 changes: 5 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* SPS - Safe Private Saver Extension Stylesheet */

body {
width: 300px;
}

0 comments on commit 8cea5c2

Please sign in to comment.