mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-03 22:36:29 +00:00
added Mozilla Social API Sharing method - better late than ever
This commit is contained in:
parent
63fd39c326
commit
090957fe3e
2 changed files with 31 additions and 1 deletions
|
@ -39,3 +39,32 @@
|
||||||
<script src="{{ poche_url }}themes/_global/js/popupForm.js"></script>
|
<script src="{{ poche_url }}themes/_global/js/popupForm.js"></script>
|
||||||
<script src="{{ poche_url }}themes/_global/js/keyboard.js"></script>
|
<script src="{{ poche_url }}themes/_global/js/keyboard.js"></script>
|
||||||
<script src="{{ poche_url }}themes/{{theme}}/js/closeMessage.js"></script>
|
<script src="{{ poche_url }}themes/{{theme}}/js/closeMessage.js"></script>
|
||||||
|
<!-- Enable Firefox Social Services
|
||||||
|
script put there because of the call to poche_url -->
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var baseurl = "{{ poche_url }}";
|
||||||
|
console.log(baseurl);
|
||||||
|
var data = {
|
||||||
|
|
||||||
|
"name": "wallabag",
|
||||||
|
"iconURL": baseurl + "/themes/_global/img/appicon/firefox-service-icon-16.png",
|
||||||
|
"icon32URL": baseurl + "/themes/_global/img/appicon/firefox-service-icon-32.png",
|
||||||
|
"icon64URL": baseurl + "/themes/_global/img/appicon/firefox-service-icon-64.png",
|
||||||
|
|
||||||
|
"shareURL": baseurl + "/index.php?action=add&plainurl=%{url}",
|
||||||
|
|
||||||
|
"description": "wallabag Extension for Firefox - The (soon to become) best way to save articles, videos and more",
|
||||||
|
"author": "Thomas Citharel",
|
||||||
|
"homepageURL": "https://wallabag.org",
|
||||||
|
"origin": "https://wallabag.org",
|
||||||
|
"postActivationURL": "https://wallabag.org",
|
||||||
|
|
||||||
|
"version": "0.1"
|
||||||
|
};
|
||||||
|
function activateSocialFeature(node) {
|
||||||
|
var event = new CustomEvent("ActivateSocialFeature");
|
||||||
|
node.setAttribute("data-service", JSON.stringify(data));
|
||||||
|
node.dispatchEvent(event);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
|
@ -16,7 +16,8 @@
|
||||||
</p>
|
</p>
|
||||||
<h3>{% trans "Browser Addons" %}</h3>
|
<h3>{% trans "Browser Addons" %}</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://addons.mozilla.org/firefox/addon/wallabag/" target="_blank">{% trans "Firefox Add-On" %}</a></li>
|
<li><a href="https://addons.mozilla.org/firefox/addon/wallabag/" target="_blank">{% trans "Standard Firefox Add-On" %}</a></li>
|
||||||
|
<li><button onclick="activateSocialFeature(this)">Mozilla Services Social API Extension</button>
|
||||||
<li><a href="https://chrome.google.com/webstore/detail/wallabag/bepdcjnnkglfjehplaogpoonpffbdcdj" target="_blank">{% trans "Chrome Extension" %}</a></li>
|
<li><a href="https://chrome.google.com/webstore/detail/wallabag/bepdcjnnkglfjehplaogpoonpffbdcdj" target="_blank">{% trans "Chrome Extension" %}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>{% trans "Mobile Apps" %}</h3>
|
<h3>{% trans "Mobile Apps" %}</h3>
|
||||||
|
|
Loading…
Reference in a new issue