search

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

custom.js (592B)


      1 var bangs = bangs || [];
      2 
      3 bangs = [].concat([
      4     {
      5         d: "html.duckduckgo.com",
      6         b: "dh",
      7         u: "https://html.duckduckgo.com/html/?q={{{s}}}",
      8     },
      9     {
     10         // doesnt matter
     11         d: "web.telegram.org/a/",
     12         b: "tg",
     13         u: "https://web.telegram.org/a/"
     14     },
     15     {
     16         d: "duckduckgo.com/bangs",
     17         b: "bangs",
     18         u: "https://duckduckgo.com/bangs?q={{{s}}}"
     19     },
     20     {
     21         d: "www.discordapp.com/channels/@me",
     22         b: "cord",
     23         u: "https://www.discordapp.com/channels/@me"
     24     }
     25 ], bangs);
     26 
     27 module.exports = {
     28     bangs
     29 };