aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorLibravatar Maitre_Oda <oda.alexandre31@gmail.com>2021-08-27 19:03:33 +0200
committerLibravatar GitHub <noreply@github.com>2021-08-27 22:33:33 +0530
commit38243e6b6e4f38c0afe52a2f14743feb3f461894 (patch)
treec57dcb06dac446e63f891c7a9cca7a44d05d2d67 /recipes
parentchore: upgrade 'nodejs' to '14.17.5'. (diff)
downloadferdium-recipes-38243e6b6e4f38c0afe52a2f14743feb3f461894.tar.gz
ferdium-recipes-38243e6b6e4f38c0afe52a2f14743feb3f461894.tar.zst
ferdium-recipes-38243e6b6e4f38c0afe52a2f14743feb3f461894.zip
New recipe: tinder (#641)
Diffstat (limited to 'recipes')
-rw-r--r--recipes/tinder/README.md2
-rw-r--r--recipes/tinder/icon.svg41
-rw-r--r--recipes/tinder/index.js2
-rw-r--r--recipes/tinder/package.json9
-rw-r--r--recipes/tinder/service.css1
-rw-r--r--recipes/tinder/webview.js8
6 files changed, 63 insertions, 0 deletions
diff --git a/recipes/tinder/README.md b/recipes/tinder/README.md
new file mode 100644
index 0000000..c195050
--- /dev/null
+++ b/recipes/tinder/README.md
@@ -0,0 +1,2 @@
1# tinder for Ferdi
2This is a Ferdi recipe for tinder
diff --git a/recipes/tinder/icon.svg b/recipes/tinder/icon.svg
new file mode 100644
index 0000000..5b29bd6
--- /dev/null
+++ b/recipes/tinder/icon.svg
@@ -0,0 +1,41 @@
1<?xml version="1.0" encoding="iso-8859-1"?>
2<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4 viewBox="0 0 512.014 512.014" style="enable-background:new 0 0 512.014 512.014;" xml:space="preserve">
5<path style="fill:#FF5722;" d="M101.999,458.181c-56.384-57.152-49.696-150.88,18.048-253.6
6 c12.32-18.688,25.088-35.648,39.776-52.96l12.224-14.368l1.216,12.832c1.856,20.096,4.576,31.104,10.752,43.68
7 c3.872,7.904,10.24,16.384,13.024,18.848c2.112,1.888,1.12,2.976,11.808-2.464c70.368-38.4,77.632-101.088,73.664-154.976
8 c-1.376-15.808-4.864-33.44-9.184-46.4c-1.664-4.992-2.624-8.928-2.112-8.768c0.512,0.16,9.28,8.448,19.488,18.432
9 c97.6,95.264,150.4,195.008,157.248,297.088c2.144,116.992-64.544,179.36-161.6,192.608
10 C203.535,520.901,146.319,501.637,101.999,458.181L101.999,458.181z"/>
11<g>
12</g>
13<g>
14</g>
15<g>
16</g>
17<g>
18</g>
19<g>
20</g>
21<g>
22</g>
23<g>
24</g>
25<g>
26</g>
27<g>
28</g>
29<g>
30</g>
31<g>
32</g>
33<g>
34</g>
35<g>
36</g>
37<g>
38</g>
39<g>
40</g>
41</svg>
diff --git a/recipes/tinder/index.js b/recipes/tinder/index.js
new file mode 100644
index 0000000..38c3f5c
--- /dev/null
+++ b/recipes/tinder/index.js
@@ -0,0 +1,2 @@
1module.exports = Ferdi => class Tinder extends Ferdi {
2};
diff --git a/recipes/tinder/package.json b/recipes/tinder/package.json
new file mode 100644
index 0000000..88791f0
--- /dev/null
+++ b/recipes/tinder/package.json
@@ -0,0 +1,9 @@
1{
2 "id": "tinder",
3 "name": "Tinder",
4 "version": "1.0.0",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://tinder.com"
8 }
9}
diff --git a/recipes/tinder/service.css b/recipes/tinder/service.css
new file mode 100644
index 0000000..38dcab0
--- /dev/null
+++ b/recipes/tinder/service.css
@@ -0,0 +1 @@
/* Insert custom styles you want to insert here */ \ No newline at end of file
diff --git a/recipes/tinder/webview.js b/recipes/tinder/webview.js
new file mode 100644
index 0000000..46ab212
--- /dev/null
+++ b/recipes/tinder/webview.js
@@ -0,0 +1,8 @@
1var _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = Ferdi => {
6
7 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
8};