Skip to content

Commit 0cd95c9

Browse files
committed
v1.0.3
1 parent e1e418f commit 0cd95c9

21 files changed

+1244
-694
lines changed

README.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
# Floatly
2-
3-
![Floatly Logo](https://github.com/d3ward/floatly/blob/master/icons/icon152.png)
2+
<p align="center">
3+
<img src="icons/icon152.png" alt="MTI"
4+
title="b2ntp" width="160" height="160" />
5+
</p>
46

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

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

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

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

33-
# Contributing
35+
## Contributing
3436

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

38-
### Libraries & other projects included in Floatly
40+
## Libraries & other projects included in Floatly
3941

4042
- [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)
4143
- [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)
42-
- [Eruda](https://eruda.liriliri.io/) - A console for Mobile Browsers | [MIT License](https://github.com/liriliri/eruda/blob/master/LICENSE)
44+
- [Eruda](https://eruda.liriliri.io/) - A console for Mobile Browsers | [MIT License](https://github.com/liriliri/eruda/blob/master/LICENSE)
45+
46+
## License
47+
48+
Floatly is licensed under [(CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/)

content.js

-196
This file was deleted.

eruda.min.js

-5
This file was deleted.

icons/icon.svg

-29
This file was deleted.

manifest.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
{
22
"manifest_version": 2,
33
"name": "Floatly",
4-
"version": "1.0.1",
4+
"version": "1.0.3",
55
"description": "Floatly is an awesome floating button that brings quick actions to any website.",
66
"permissions": ["tabs", "clipboardWrite","storage","activeTab","http://*/","https://*/","bookmarks"],
77
"background": {
8-
"scripts": ["background.js"],
8+
"scripts": ["src/js/background.js"],
99
"persistent": false
1010
},
11-
"options_page": "options.html",
11+
"options_page": "src/options/options.html",
1212

1313
"content_scripts": [{
1414
"matches": [
1515
"<all_urls>"
1616
],
17-
"js": ["content.js"]
17+
"js": ["src/js/content.js"]
1818
}],
1919
"browser_action": {
20-
"default_icon": "icons/icon256.png"
20+
"default_icon": "src/png/icon256.png"
2121
},
2222
"web_accessible_resources": [
23-
"eruda.min.js",
24-
"eruda_toggle.js"
23+
"src/js/eruda.min.js",
24+
"src/js/eruda_toggle.js"
2525
],
26-
"icons": { "20": "icons/icon20.png",
27-
"48": "icons/icon48.png",
28-
"152": "icons/icon152.png" }
26+
"icons": { "20": "src/png/icon20.png",
27+
"48": "src/png/icon48.png",
28+
"152": "src/png/icon152.png" }
2929
}

0 commit comments

Comments
 (0)