-
Notifications
You must be signed in to change notification settings - Fork 12
/
plugin.php
79 lines (52 loc) · 3.12 KB
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
include("config.php");
include("functions.php");
include("session.php");
include("userclass.php");
$loggedin = $session->isLoggedIn();
htmlHeader("Get the synccit apps - synccit - reddit history/link sync", $loggedin);
?>
<div class="fourcol appdiv">
<h2>Browsers</h2>
<br />
<a href="https://chrome.google.com/webstore/detail/synccit-for-reddit/djgggkkgpoeknlpdllmhdagbfnhaigmd" target="_blank"><img src="<?php echo BASEURL; ?>images/chrome.png" alt="chrome" /></a>
<br />
<span class="appname"><a href="https://chrome.google.com/webstore/detail/synccit-for-reddit/djgggkkgpoeknlpdllmhdagbfnhaigmd" target="_blank">Chrome</a></span>
<br /><br />
<a href="https://addons.mozilla.org/firefox/addon/synccit/" target="_blank"><img src="<?php echo BASEURL; ?>images/firefox.png" alt="firefox" /></a>
<br />
<span class="appname"><a href="https://addons.mozilla.org/firefox/addon/synccit/" target="_blank">Firefox</a></span>
<br /><br />
<a href="https://github.com/drakeapps/synccit-browser-extension/raw/master/synccit.user.js" target="_blank"><img src="<?php echo BASEURL; ?>images/greasemonkey.png" alt="greasemonkey" /></a>
<br />
<span class="appname"><a href="https://github.com/drakeapps/synccit-browser-extension/raw/master/synccit.user.js" target="_blank">Greasemonkey</a></span>
<br /><br />
</div>
<div class="fourcol appdiv">
<h2>Mobile</h2>
<br />
<a href="https://itunes.apple.com/us/app/amrc-client-for-reddit/id572391252?mt=8" target="_blank"><img src="<?php echo BASEURL; ?>images/amrc.png" alt="amrc" /></a>
<br />
<span class="appname"><a href="https://itunes.apple.com/us/app/amrc-client-for-reddit/id572391252?mt=8" target="_blank">amrc (iOS)</a></span>
<br /><br />
<a href="https://play.google.com/store/apps/details?id=com.andrewshu.android.redditdonation" target="_blank"><img src="<?php echo BASEURL; ?>images/reddit-is-fun-golden.png" alt="reddit is fun golden" /></a>
<br />
<span class="appname"><a href="https://play.google.com/store/apps/details?id=com.andrewshu.android.redditdonation" target="_blank">reddit is fun - golden platinum (Android)</a></span>
<br /><br />
<a href="https://play.google.com/store/apps/details?id=com.andrewshu.android.reddit" target="_blank"><img src="<?php echo BASEURL; ?>images/reddit-is-fun-golden.png" alt="reddit is fun" /></a>
<br />
<span class="appname"><a href="https://play.google.com/store/apps/details?id=com.andrewshu.android.reddit" target="_blank">reddit is fun (Android)</a></span>
<br /><br />
</div>
<div class="fourcol appdiv last">
<h2>Developers</h2>
<br />
<a href="https://github.com/drakeapps/synccit#api-docs" target="_blank"><img src="<?php echo BASEURL; ?>images/github.png" alt="github" /></a>
<br />
<span class="appname"><a href="https://github.com/drakeapps/synccit#api-docs" target="_blank">API Documentation</a></span>
<br /><br />
Looking to implement synccit in your own reddit app? Synccit has a completely open and well documented API. And the synccit.com server is ready for any traffic you send at it.
</div>
<?php
htmlFooter();
?>