Skip to content

Commit

Permalink
Merge pull request #12 from J4mez/dev
Browse files Browse the repository at this point in the history
add privacy and center text
  • Loading branch information
J4mez authored Jan 23, 2024
2 parents 7b1f02c + f6ad7b5 commit a252405
Show file tree
Hide file tree
Showing 6 changed files with 91 additions and 39 deletions.
41 changes: 41 additions & 0 deletions Privacy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Privacy Policy for FireLink

## Introduction

At FireLink, we are committed to maintaining the trust and confidence of all visitors to our web site and users of our Chrome extension, FireLink. In particular, we want you to know that FireLink is not in the business of selling, renting or trading email lists with other companies and businesses for marketing purposes.

This Privacy Policy, provides detailed information on when and why we collect personal information, how we use it, the limited conditions under which we may disclose it to others, and how we keep it secure.

## Information That We Collect

FireLink does not collect any personal information.

## Use of Your Information

We do not use any information, as FireLink does not collect any personal information.

## Storing Your Personal Data

As we do not collect any personal information, we do not store any personal data.

## Disclosing Your Information

We do not disclose any personal information, as FireLink does not collect any personal information.

## Third Party Links

Our Chrome extension may link to third-party websites. We are not responsible for the privacy policies of these third-party websites.

## Access to Information

As we do not collect personal information, there is no personal information to access.

## Contacting Us

Please do not hesitate to contact us regarding any matter relating to this Privacy Policy at [Your Contact Information].

## Changes to Our Privacy Policy

We may make changes to our Privacy Policy in the future, however, the most current version of the policy will govern our processing of your personal data and will always be available at this page.

Last updated: 2024-01-23
7 changes: 0 additions & 7 deletions src/README.md

This file was deleted.

Binary file added src/icons/fire-solid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icons/ok.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 36 additions & 26 deletions src/popup/index.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript" src="browser-polyfill.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css" />
</head>
<style>
body {
overflow-y: auto;
max-width: 300px;
min-width:250px;
}
</style>
<body class="container py-3">
<div class="d-flex justify-content-between position-sticky top-0 mb-5">
<button id="manageButton" class="btn btn-secondary btn-sm">Manage your URLs</button>
<button id="optionsButton" class="btn btn-secondary btn-sm">Options</button>
</div>
<div class="text-center mb-5">
<h1 class="mb-4">Share this URL!</h1>
<div id="currentUrlWrapper">
<div id="currentUrl" class="text-center mb-3">URL not found</div>
<button id="shareButton" class="btn btn-primary mt-3">Share URL</button>
</div>
</body>
<script src="global.js"></script>
<script src="index.js"></script>
<head>
<script
type="application/javascript"
src="browser-polyfill.js"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<style>
body {
max-width: 400px;
min-width: 300px;
}
</style>
<body class="container py-3">
<div class="d-flex justify-content-between position-sticky top-0 mb-5">
<button id="manageButton" class="btn btn-secondary btn-sm">
Manage your URLs
</button>
<button id="optionsButton" class="btn btn-secondary btn-sm">
Options
</button>
</div>
<div class="text-center mb-5">
<h1 class="mb-4">Share this URL!</h1>
<div id="currentUrl" class="text-center text-wrap">URL not found</div>
<button id="shareButton" class="btn btn-primary mt-3">
Share URL
</button>
</div>
</body>
<script src="global.js"></script>
<script src="index.js"></script>
</html>
20 changes: 14 additions & 6 deletions src/popup/share.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript" src="browser-polyfill.js"></script>
<script
type="application/javascript"
src="browser-polyfill.js"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
Expand All @@ -10,17 +13,22 @@
</head>
<style>
body {
overflow-y: scroll;
max-width: 350px;
overflow-x: auto;
max-width: 400px;
min-width: 300px;
min-height: max-content;
}
</style>
<body>
<div class="container mt-5">
<h1 class="text-center">Share this URL!</h1>
<div id="currentUrl" class="text-center mb-3">URL not found</div>
<div id="shortUrlPreview" class="text-center mb-3">URL Preview:</div>
<div class="text-center text-wrap mb-5">
<div id="currentUrl" class="text-center text-wrap">
URL not found
</div>
<div id="shortUrlPreview" class="text-center text-wrap">
URL Preview:
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-6">
<form id="sharingOptionsForm">
Expand Down

0 comments on commit a252405

Please sign in to comment.