diff options
author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-28 23:23:31 +0100 |
---|---|---|
committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-28 23:23:31 +0100 |
commit | 576fdef440e835592f9f5c8dc25398e343687c7a (patch) | |
tree | 6ab01e8cac5f2aac355a443d6b95bee983b62fda | |
parent | e7e298153678fc0e77e24a3ae3b333b1230136b2 (diff) | |
download | searxng-576fdef440e835592f9f5c8dc25398e343687c7a.tar.gz searxng-576fdef440e835592f9f5c8dc25398e343687c7a.zip |
Google Play Store
Add Google play store apps, movies and music (sound -> gps)
-rw-r--r-- | searx/settings.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 584ef6d90..00c12d1ca 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -103,6 +103,33 @@ engines: engine : google_news shortcut : gon + - name : google play apps + engine : xpath + search_url : https://play.google.com/store/search?q={query}&c=apps + url_xpath : //a[@class="title"]/@href + title_xpath : //a[@class="title"] + content_xpath : //a[@class="subtitle"] + categories : files + shortcut : gpa + + - name : google play movies + engine : xpath + search_url : https://play.google.com/store/search?q={query}&c=movies + url_xpath : //a[@class="title"]/@href + title_xpath : //a[@class="title"] + content_xpath : //a[@class="subtitle"] + categories : videos + shortcut : gpm + + - name : google play music + engine : xpath + search_url : https://play.google.com/store/search?q={query}&c=music + url_xpath : //a[@class="title"]/@href + title_xpath : //a[@class="title"] + content_xpath : //a[@class="subtitle"] + categories : music + shortcut : gps + - name : openstreetmap engine : openstreetmap shortcut : osm |