/watch (Video Responder)
/watch (Video Responder) grabs YouTube video links from comments and makes them clickable.
O que é /watch (Video Responder)?
/watch (Video Responder) é uma extensão do Chrome desenvolvida por Monotreme, e sua principal característica é "/watch (Video Responder) grabs YouTube video links from comments and makes them clickable.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão /watch (Video Responder)
Baixe arquivos de extensão /watch (Video Responder) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
"/watch" Video Responder searches through comments to find YouTube watch links. It then converts them to clickable links and displays the results in the right hand side of any YouTube video page. -------------- New in 0.3.4 - Bug fix - find comment function would not find comment if it was on page higher than first page. -------------- New in 0.3.3 - Added check for http vs. https domain to avoid mixed content error issues which potentially prevented data being loaded. - Bug fix link prepare function where comments are disabled. - Added link tracking to check which features are popular and which are potentially redundant. -------------- New in 0.3.2 - Reworked link preparer to be page based rather than popup based. - Added "jump to comment text area" feature when using link preparer for easier sharing. - Modified "Comment Finder" to navigate directly to the comments. - Updated About page content. -------------- New in 0.3.1 - Updated Advanced search page to match responder on "/watch" pages - added Menu to Advanced Search page items. -------------- New in 0.3.0 - Find comment menu option. Lets you jump to the original youtube comment for quick reply, deletion or to block user. -------------- New in 0.2.9 - Vimeo and Dailymotion links can now be placed in comments and shown as a video response. - "Response link preparer" feature in popup to convert video urls (YouTube, Vimeo or Dailmotion) so they correctly show as a response. - Longer comments get truncated to 2 lines. Click more button to show the whole comment. - Duplicates comments are removed to prevent spammers hogging the results. A link to show you duplicates is provided at the bottom of the results. -------------- New in 0.2.8 - Much faster search times on advanced search. - Inbox links option to show links to your inbox in the top menu and left side menu. - Button in each video response comment with links to message the user. Message is auto filled. Also link to advanced search the comment author. -------------- New in 0.2.7 Bug fix: watch page action button now shows when navigating via YouTube standard recommended videos. -------------- New in 0.2.6 Minor bug fixes and better error messages for advanced search form. -------------- New in 0.2.5 Advanced Video Response Search. Search through all of a YouTube users uploads and search for "/watch" links. A great feature to check back for video response links on your recent videos. -------------- New in 0.2.4 - Bug Fix: Page action not showing after disabling. -------------- New in 0.2.3 - Security Update: Change content script to use jQuery templating -------------- New in 0.2.2 Fix bug with "Prioritise Matched Responses" option. -------------- New in 0.2.1: - Added "Prioritise Matched Responses" option. This option puts the videos that match the response criteria at the top of the list. - Moved "/watch" icon to become a page action rather than browser action. -------------- New in 0.2.0: - Added "Hide By Default" option. - Minor bug fixes. - More minor design changes. -------------- New in 0.1.9: - Video Responder is now called /watch ("forward slash watch"). - Design changes, new icons. - Comment list now displays with most recent comments first. -------------- New in 0.1.8: - "Highlight Matched Responses" allows for better video responses by highlighting comments that match specific criteria.
Informações Básicas da Extensão
Nome | |
ID | mdpbeofkjkfjbenolkonpegkegiodgng |
URL Oficial | https://chrome.google.com/webstore/detail/watch-video-responder/mdpbeofkjkfjbenolkonpegkegiodgng |
Descrição | /watch (Video Responder) grabs YouTube video links from comments and makes them clickable. |
Tamanho do Arquivo | 164 KB |
Contagem de Instalações | 80 |
Versão Atual | 0.3.4 |
Última Atualização | 2013-11-05 |
Data de Publicação | 2013-11-05 |
Classificação | 4.44/5 Total de 9 Avaliações |
Desenvolvedor | Monotreme |
Tipo de Pagamento | free |
Site da Extensão | http://www.dormantechoes.co.uk/2013/10/watch-video-responder-an-alternative-youtube-video-response-tool/ |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "\/watch (Video Responder)", "description": "\/watch (Video Responder) grabs YouTube video links from comments and makes them clickable.", "version": "0.3.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*", "http:\/\/gdata.youtube.com\/*", "https:\/\/gdata.youtube.com\/*", "http:\/\/vimeo.com\/*", "https:\/\/vimeo.com\/*", "clipboardWrite", "clipboardRead" ], "background": { "scripts": [ "jquery-2.0.3.min.js", "background.js", "linkpreparer.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "jquery-2.0.3.min.js", "insertlinks.js" ], "css": [ "insertlinks.css" ] }, { "matches": [ "*:\/\/www.youtube.com\/inbox*" ], "js": [ "jquery-2.0.3.min.js", "inbox.js" ] }, { "matches": [ "*:\/\/www.youtube.com\/all_comments*" ], "js": [ "jquery-2.0.3.min.js", "findcomment.js" ] } ], "web_accessible_resources": [ "ajax-loader.gif", "icon48.png", "icon.png", "arrowUp.png", "arrowDown.png", "little_watch_banner.png", "comment_menu_icon.png", "vimeo_logo.png", "dailymotion_logo.png", "link.png" ], "content_security_policy": "script-src 'self' https:\/\/vimeo.com https:\/\/ssl.google-analytics.com; object-src 'self'" } |