diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-07-18 03:58:17 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-07-18 03:58:17 -0700 |
commit | 43b7e8126cb7fa8d3e9c3592b9c9fb00f11f531c (patch) | |
tree | 2c8ccc8324fbec8cc29460df3efbd0da4eb66167 | |
parent | 9c65e64b3bb634b16e21da904259da0d2be7bd4d (diff) | |
download | yt-local-43b7e8126cb7fa8d3e9c3592b9c9fb00f11f531c.tar.lz yt-local-43b7e8126cb7fa8d3e9c3592b9c9fb00f11f531c.tar.xz yt-local-43b7e8126cb7fa8d3e9c3592b9c9fb00f11f531c.zip |
ability to install the xml search plugin from all pages
-rw-r--r-- | yt_basic_template.html | 1 | ||||
-rw-r--r-- | yt_channel_about_template.html | 1 | ||||
-rw-r--r-- | yt_channel_items_template.html | 1 | ||||
-rw-r--r-- | yt_comments_template.html | 1 | ||||
-rw-r--r-- | yt_local_playlist_template.html | 1 | ||||
-rw-r--r-- | yt_playlist_template.html | 1 | ||||
-rw-r--r-- | yt_search_results_template.html | 1 | ||||
-rw-r--r-- | yt_watch_template.html | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/yt_basic_template.html b/yt_basic_template.html index f884a02..eec9b0d 100644 --- a/yt_basic_template.html +++ b/yt_basic_template.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> $style </style> diff --git a/yt_channel_about_template.html b/yt_channel_about_template.html index 63af6f1..ef51742 100644 --- a/yt_channel_about_template.html +++ b/yt_channel_about_template.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> main{ display:grid; diff --git a/yt_channel_items_template.html b/yt_channel_items_template.html index 169d2d5..d1a4a90 100644 --- a/yt_channel_items_template.html +++ b/yt_channel_items_template.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> main{ display:grid; diff --git a/yt_comments_template.html b/yt_comments_template.html index a59a379..6ffdb2b 100644 --- a/yt_comments_template.html +++ b/yt_comments_template.html @@ -5,6 +5,7 @@ <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> <link href="/youtube.com/comments.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> main{ display:grid; diff --git a/yt_local_playlist_template.html b/yt_local_playlist_template.html index 2b92bb6..49df5ed 100644 --- a/yt_local_playlist_template.html +++ b/yt_local_playlist_template.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> main{ display:grid; diff --git a/yt_playlist_template.html b/yt_playlist_template.html index c237695..711126b 100644 --- a/yt_playlist_template.html +++ b/yt_playlist_template.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> main{ display:grid; diff --git a/yt_search_results_template.html b/yt_search_results_template.html index 3909898..a2a90aa 100644 --- a/yt_search_results_template.html +++ b/yt_search_results_template.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> main{ display:grid; diff --git a/yt_watch_template.html b/yt_watch_template.html index 58b3959..27b7302 100644 --- a/yt_watch_template.html +++ b/yt_watch_template.html @@ -5,6 +5,7 @@ <title>$page_title</title> <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> <link href="/youtube.com/comments.css" type="text/css" rel="stylesheet"> + <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> <style type="text/css"> main{ display:grid; |