Compare commits

...

8 Commits

Author SHA1 Message Date
856a715130 โœ๏ธ Add Opera doc
For #8
2020-07-21 10:06:10 +02:00
b8717bd08f โœ๏ธ Rename the project
For #6
2020-07-21 09:54:09 +02:00
a0af8e31a5 ๐Ÿ› Delete trailing slash
Fix #10
2020-07-21 09:53:32 +02:00
78680fac49 ๐Ÿ“ Add the privacy policy draft
Fix #7
2020-07-07 14:54:24 +02:00
bedb5a22b6 ๐Ÿšš Rename the project
For #6
2020-07-07 11:35:17 +02:00
b571af29c5 ๐Ÿ”– Update manifest.json for plugin update on stores 2020-07-03 17:32:17 +02:00
c5cadb1557 ๐Ÿ“ Rerender the readme file with instructions
For firefox in #8
2020-07-03 17:30:43 +02:00
45cf59be52 Merge pull request 'โœจ Allows to add the page content into the email, server-side' (#5) from feature/extract/1 into master
Fix #4

Reviewed-on: #5
2020-07-02 16:58:52 +02:00
8 changed files with 108 additions and 84 deletions

127
README.md
View File

@ -1,28 +1,67 @@
<div align="center">
<h1>
Extension Boilerplate
</h1>
# ReadLater WebExtension ![language](https://img.shields.io/badge/language-webextension-blue.svg)
<p>
<strong>A foundation for creating browser extensions for Chrome, Opera & Firefox.</strong>
</p>
</div>
> ReadLaterByEmail webextension generator
Now that Firefox supports WebExtensions, it has become a lot easier to build browser extensions/addons for multiple browsers without duplicating the codebase. This project serves as a sensible starting point to help you get started.
## :books: Table of Contents
<div align="center">
<a href="https://www.emailthis.me/open-source/extension-boilerplate">
<img src="./resources/chrome-promo/large.png" alt="Extension Boilerplate">
</a>
</div>
- [Installation](#package-installation)
- [Usage](#rocket-usage)
- [Features](#sparkles-features)
- [Support](#hammer_and_wrench-support)
- [Contributing](#memo-contributing)
- [License](#scroll-license)
I have extracted this from the browser extensions that I built for my side-project, [Email This](https://www.emailthis.me).
## :package: Installation
> Side note: Do check out [**Email This**](https://www.emailthis.me). It is a simpler alternative to bookmarking tools like Pocket, Readability & Instapaper. Email This will remove ads & distractions from an article and send you a nice email with just the text/images. No need to install any additional applications or login to another app just to access your bookmarks.
The Chrome Extensions is available [on the Chrome Web Store](https://chrome.google.com/webstore/detail/email-this/lgblkllcjgihfnlefhnnpppndbbjallh).
### First check if you have composer installed
Before installing this, you need to check if you have `NPM` installed on your computer.
## Features
### Then install this script
```sh
git clone ssh://gogs@git.shikiryu.com:2200/ReadLaterByEmail/webextensions.git
cd webextensions
npm install
npm run build
```
## :rocket: Usage
### Load the extension in Chrome & Opera
1. Open Chrome/Opera browser and navigate to chrome://extensions
2. Select "Developer Mode" and then click "Load unpacked extension..."
3. From the file browser, choose to `extension-boilerplate/build/chrome` or (`extension-boilerplate/build/opera`)
### Load the extension in Firefox
1. Open Firefox browser and navigate to about:debugging
2. Click "Load Temporary Add-on" and from the file browser, choose `extension-boilerplate/build/firefox`
### Developing
The following tasks can be used when you want to start developing the extension and want to enable live reload -
- `npm run chrome-watch`
- `npm run opera-watch`
- `npm run firefox-watch`
### Packaging
Run `npm run dist` to create a zipped, production-ready extension for each browser. You can then upload that to the appstore.
#### Firefox
Run `npm run sourcezip` for firefox submission
Update <https://addons.mozilla.org/fr/developers/addon/shikiryu-readlater/versions/submit/>
#### Opera
Update <https://addons.opera.com/developer/package/250537/?tab=versions>
## :sparkles: Features
<dl>
<dt>Write once and deploy to Chrome, Opera & Firefox</dt>
@ -67,56 +106,20 @@ The Chrome Extensions is available [on the Chrome Web Store](https://chrome.goog
You might need to specify different data variables based on your environment. For example, you might want to use a localhost API endpoint during development and a production API endpoint once the extension is submitted to the appstore. You can specify such data in the json files inside `config` directory.
You can also set custom data variables based on the platform (different variable for Chrome, FF, Opera).
</dd>
</dl>
## :hammer_and_wrench: Support
Please [open an issue](https://git.shikiryu.com/ReadLaterByEmail/webextensions/issues/new) for support.
## Installation
1. Clone the repository `git clone https://github.com/EmailThis/extension-boilerplate.git`
2. Run `npm install`
3. Run `npm run build`
## :memo: Contributing
Alternately, if you want to try out the sample extension, here are the download links. After you download it, unzip the file and load it in your browser using the steps mentioned below.
- [**Download Chrome Extension**](https://github.com/EmailThis/extension-boilerplate/releases/download/v1.0/chrome.zip)
- [**Download Opera Extension**](https://github.com/EmailThis/extension-boilerplate/releases/download/v1.0/opera.zip)
- [**Download Firefox Extension**](https://github.com/EmailThis/extension-boilerplate/releases/download/v1.0/firefox.zip)
Please contribute using [Github Flow](https://guides.github.com/introduction/flow/). Create a branch, add commits, and [open a pull request](https://git.shikiryu.com/ReadLaterByEmail/webextensions/compare/master...master).
## :scroll: License
##### Load the extension in Chrome & Opera
1. Open Chrome/Opera browser and navigate to chrome://extensions
2. Select "Developer Mode" and then click "Load unpacked extension..."
3. From the file browser, choose to `extension-boilerplate/build/chrome` or (`extension-boilerplate/build/opera`)
[Creative Commons Attribution NonCommercial (CC-BY-NC)](<https://tldrlegal.com/license/creative-commons-attribution-noncommercial-(cc-nc)>) ยฉ [Chouchen](https://github.com/Chouchen/)
##### Load the extension in Firefox
1. Open Firefox browser and navigate to about:debugging
2. Click "Load Temporary Add-on" and from the file browser, choose `extension-boilerplate/build/firefox`
## Developing
The following tasks can be used when you want to start developing the extension and want to enable live reload -
- `npm run chrome-watch`
- `npm run opera-watch`
- `npm run firefox-watch`
## Packaging
Run `npm run dist` to create a zipped, production-ready extension for each browser. You can then upload that to the appstore.
## TODO
- [ ] Add support for Safari
- [x] Add Firefox & Opera Promo images
- [x] Add sample screenshot templates
- [ ] Write a guide for using config variables & JS preprocessor
-----------
This project is licensed under the MIT license.
If you have any questions or comments, please create a new issue. I'd be happy to hear your thoughts.
Bharani, [Email This](https://www.emailthis.me)
Based on [Email This](https://www.emailthis.me) which is licensed under the MIT license.

View File

@ -1,6 +1,6 @@
{
"name": "Shikiryu Read Later",
"version": "0.0.2.2",
"name": "Read Later by Email",
"version": "0.0.3",
"manifest_version": 2,
"description": "__MSG_extensionDescription__",
"icons": {
@ -9,26 +9,16 @@
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/background.js"
]
"scripts": ["scripts/background.js"]
},
"permissions": [
"activeTab",
"storage"
],
"permissions": ["activeTab", "storage"],
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"scripts/contentscript.js"
],
"matches": ["http://*/*", "https://*/*"],
"js": ["scripts/contentscript.js"],
"run_at": "document_end",
"all_frames": false
}
@ -39,12 +29,12 @@
"32": "icons/favicon-32x32.png",
"96": "icons/favicon-96x96.png"
},
"default_title": "Shikiryu Bookmarklet",
"default_title": "Read Later by Email",
"default_popup": "popup.html"
},
"applications": {
"gecko": {
"id": "bookmarklet@shikiryu.com"
"id": "bookmarklet@shikiryu.com"
}
}
}

27
privacy_policy.md Executable file
View File

@ -0,0 +1,27 @@
#English
This extension collect the instance URL you'll be sending your page to and the token used to identify yourself on this instance.
This will be saved on your browser local storage.
The following elements are sent to the instance:
- title
- description
- image
They are automatically generated with the current tab content. With your current token, you can also send a comment which will reach the instance.
---
# French
Cette extension collecte l'URL de l'instance vers laquelle vous allez envoyer les informations and le jeton vous permettant de vous identifier sur cette instance.
Ces deux donnรฉes sont enregistrรฉes localement dans le local storage de votre navigateur.
Les รฉlรฉments suivant seront envoyรฉs ร  l'instance :
- titre
- description
- image
Ils seront gรฉnรฉrรฉs automatiquement ร  partir des mรชmes informations utilisรฉes sur l'onglet actuellement ouvert.
Avec votre jeton en cours, vous pourrez aussi envoyer un commentaire de cet onglet vers l'instance.

View File

@ -1,6 +1,6 @@
{
"extensionName": {
"message": "Shikiryu Read Later",
"message": "Read Later by Email",
"description": "The name of the extension."
},
"extensionDescription": {

View File

@ -1,6 +1,6 @@
{
"extensionName": {
"message": "Shikiryu Read Later",
"message": "Read Later by Email",
"description": "The name of the extension."
},
"extensionDescription": {

View File

@ -53,7 +53,7 @@
<div class="grid">
<div class="unit whole center-on-mobiles">
<p class="text-center text-muted">
&copy; <a href="https://readlater.shikiryu.com">Shikiryu</a>
&copy; <a href="https://readlater.shikiryu.com">ReadLaterByEmail</a>
</p>
</div>
</div>

View File

@ -30,7 +30,8 @@
<div class="grid">
<div class="unit whole center-on-mobiles">
<p class="text-center text-muted">
&copy; <a href="https://readlater.shikiryu.com">Shikiryu</a>
&copy;
<a href="https://readlater.shikiryu.com">ReadLaterByEmail</a>
</p>
<p class="js-options" data-message="optionsAndSettings"></p>
</div>

View File

@ -19,6 +19,9 @@ storage.get("extract", function(resp) {
});
urlInput.addEventListener("blur", function(e) {
if (this.value.endsWith("/")) {
this.value = this.value.substring(0, this.value.length - 1);
}
var value = this.value;
storage.set({ url: value }, function() {
message.textContent = ext.i18n.getMessage("URLChanged");