/watch (Video Responder)
/watch (Video Responder) grabs YouTube video links from comments and makes them clickable.
什麼是/watch (Video Responder)?
/watch (Video Responder)是由Monotreme開發的Chrome擴展程式,該擴展的主要功能是“/watch (Video Responder) grabs YouTube video links from comments and makes them clickable.”。
擴展截圖
下載/watch (Video Responder)擴展crx文件
下載/watch (Video Responder)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
"/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.
擴展基本資訊
名稱 | |
ID | mdpbeofkjkfjbenolkonpegkegiodgng |
官方網址 | https://chrome.google.com/webstore/detail/watch-video-responder/mdpbeofkjkfjbenolkonpegkegiodgng |
簡介 | /watch (Video Responder) grabs YouTube video links from comments and makes them clickable. |
檔案大小 | 164 KB |
安裝次數 | 80 |
目前版本 | 0.3.4 |
更新時間 | 2013-11-05 |
上架時間 | 2013-11-05 |
評分 | 4.44/5 共 9 次評分 |
開發者 | Monotreme |
付費類型 | free |
擴展官網 | http://www.dormantechoes.co.uk/2013/10/watch-video-responder-an-alternative-youtube-video-response-tool/ |
支援的語言 | 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'" } |