Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
d3ward committed Apr 9, 2021
1 parent e1e418f commit 0cd95c9
Show file tree
Hide file tree
Showing 21 changed files with 1,244 additions and 694 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Floatly

![Floatly Logo](https://github.com/d3ward/floatly/blob/master/icons/icon152.png)
<p align="center">
<img src="icons/icon152.png" alt="MTI"
title="b2ntp" width="160" height="160" />
</p>

Floatly is an awesome floating button that brings quick actions from any website.
Made to be mobile friendly first, but it also works on desktop.

On mobile you can use Floatly on browsers that supports extensions like [Kiwi Browser](https://kiwibrowser.com/)

Download latest version -> [Releases](https://github.com/d3ward/floatly/releases)
# Actions
## Actions

- Close current tab
- Duplicate current tab
Expand All @@ -30,13 +32,17 @@ Download latest version -> [Releases](https://github.com/d3ward/floatly/releases
- Bookmarks current tab
- Share current page

# Contributing
## Contributing

If you have a suggestion feel free to share it by opening an issue
You can suggest an action to be added to Floatly , if it's doable , it will be implemented

### Libraries & other projects included in Floatly
## Libraries & other projects included in Floatly

- [Sortable 1.10.0-rc3](https://sortablejs.github.io/Sortable/) - JavaScript library for reorderable drag-and-drop lists | [MIT License](https://github.com/SortableJS/Sortable/blob/master/LICENSE)
- [Vanilla-Picker v2.10.1](https://vanilla-picker.js.org) - A simple, easy to use vanilla JS color picker with alpha selection. | [ISC License](https://github.com/Sphinxxxx/vanilla-picker/blob/master/LICENSE.md)
- [Eruda](https://eruda.liriliri.io/) - A console for Mobile Browsers | [MIT License](https://github.com/liriliri/eruda/blob/master/LICENSE)
- [Eruda](https://eruda.liriliri.io/) - A console for Mobile Browsers | [MIT License](https://github.com/liriliri/eruda/blob/master/LICENSE)

## License

Floatly is licensed under [(CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
196 changes: 0 additions & 196 deletions content.js

This file was deleted.

5 changes: 0 additions & 5 deletions eruda.min.js

This file was deleted.

29 changes: 0 additions & 29 deletions icons/icon.svg

This file was deleted.

20 changes: 10 additions & 10 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"manifest_version": 2,
"name": "Floatly",
"version": "1.0.1",
"version": "1.0.3",
"description": "Floatly is an awesome floating button that brings quick actions to any website.",
"permissions": ["tabs", "clipboardWrite","storage","activeTab","http://*/","https://*/","bookmarks"],
"background": {
"scripts": ["background.js"],
"scripts": ["src/js/background.js"],
"persistent": false
},
"options_page": "options.html",
"options_page": "src/options/options.html",

"content_scripts": [{
"matches": [
"<all_urls>"
],
"js": ["content.js"]
"js": ["src/js/content.js"]
}],
"browser_action": {
"default_icon": "icons/icon256.png"
"default_icon": "src/png/icon256.png"
},
"web_accessible_resources": [
"eruda.min.js",
"eruda_toggle.js"
"src/js/eruda.min.js",
"src/js/eruda_toggle.js"
],
"icons": { "20": "icons/icon20.png",
"48": "icons/icon48.png",
"152": "icons/icon152.png" }
"icons": { "20": "src/png/icon20.png",
"48": "src/png/icon48.png",
"152": "src/png/icon152.png" }
}
Loading

0 comments on commit 0cd95c9

Please sign in to comment.