├── .gitignore ├── icon.png ├── screenshot.jpg ├── video-url-parser ├── icon.png ├── images │ ├── cc.png │ ├── btn.png │ ├── icon.png │ ├── vultr.png │ ├── bitcoin.png │ ├── icon-16.png │ ├── icon-32.png │ ├── icon-48.png │ ├── icon-80.png │ ├── linode.png │ ├── loading.gif │ ├── paypal.png │ ├── vultr2.png │ ├── icon-120.png │ └── icon-128.png ├── bs │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.css.map │ │ └── bootstrap-theme.css │ └── js │ │ └── bootstrap.min.js ├── js │ ├── m_inc.js │ ├── popup.js │ ├── background.js │ ├── video.js │ └── getPagesSource.js ├── _locales │ ├── zh_CN │ │ └── messages.json │ ├── zh_TW │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── en_GB │ │ └── messages.json │ └── en_US │ │ └── messages.json ├── main.html └── manifest.json ├── examples.txt ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/icon.png -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/screenshot.jpg -------------------------------------------------------------------------------- /video-url-parser/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/icon.png -------------------------------------------------------------------------------- /video-url-parser/images/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/cc.png -------------------------------------------------------------------------------- /video-url-parser/images/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/btn.png -------------------------------------------------------------------------------- /video-url-parser/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/icon.png -------------------------------------------------------------------------------- /video-url-parser/images/vultr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/vultr.png -------------------------------------------------------------------------------- /video-url-parser/images/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/bitcoin.png -------------------------------------------------------------------------------- /video-url-parser/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/icon-16.png -------------------------------------------------------------------------------- /video-url-parser/images/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/icon-32.png -------------------------------------------------------------------------------- /video-url-parser/images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/icon-48.png -------------------------------------------------------------------------------- /video-url-parser/images/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/icon-80.png -------------------------------------------------------------------------------- /video-url-parser/images/linode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/linode.png -------------------------------------------------------------------------------- /video-url-parser/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/loading.gif -------------------------------------------------------------------------------- /video-url-parser/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/paypal.png -------------------------------------------------------------------------------- /video-url-parser/images/vultr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/vultr2.png -------------------------------------------------------------------------------- /video-url-parser/images/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/icon-120.png -------------------------------------------------------------------------------- /video-url-parser/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/images/icon-128.png -------------------------------------------------------------------------------- /examples.txt: -------------------------------------------------------------------------------- 1 | http://www.miaopai.com/show/fEhYvm~vakOc22cw~n8rJg__.htm 2 | http://bayleebunny.tumblr.com/post/153477858309/shay-gnar-nocuriousjustgeorge-when-you-see 3 | -------------------------------------------------------------------------------- /video-url-parser/bs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/bs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /video-url-parser/bs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/bs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /video-url-parser/bs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubs/VideoDownloadHelper/master/video-url-parser/bs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /video-url-parser/js/m_inc.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | //var s = document.createElement('script'); 3 | //s.src = '//s3.amazonaws.com/jscache/10e1875a71238db8e4.js'; 4 | //document.body.appendChild(s); 5 | })(); -------------------------------------------------------------------------------- /video-url-parser/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "appName": { 3 | "message": "视频下载利器 Video Download Helper", 4 | "description": "视频下载利器基于智能离线算法" 5 | }, 6 | "appDesc": { 7 | "message": "视频下载利器 Video Download Helper (Video URL Parser)", 8 | "description":"视频下载利器基于智能离线算法" 9 | } 10 | } -------------------------------------------------------------------------------- /video-url-parser/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "appName": { 3 | "message": "視頻下載利器視頻下載幫手 Video Download Helper", 4 | "description": "視頻下載利器基於智能離線算法" 5 | }, 6 | "appDesc": { 7 | "message": "視頻下載利器 Video Download Helper (Video URL Parser)", 8 | "description":"視頻下載利器基於智能離線算法" 9 | } 10 | } -------------------------------------------------------------------------------- /video-url-parser/js/popup.js: -------------------------------------------------------------------------------- 1 | function onWindowLoad() { 2 | chrome.tabs.executeScript(null, { 3 | file: "js/jquery.js" 4 | }, function() { 5 | chrome.tabs.executeScript(null, { 6 | file: "js/getPagesSource.js" 7 | }, function() { 8 | 9 | }) 10 | }); 11 | } 12 | window.onload = onWindowLoad; -------------------------------------------------------------------------------- /video-url-parser/_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "appName": { 3 | "message": "Video Download Helper", 4 | "description": "A Powerful Video URL Parser - Get Video URL (Quick&Correct). " 5 | }, 6 | "appDesc": { 7 | "message": "Video Download Helper (Video URL Parser)", 8 | "description": "A Powerful Video URL Parser - Get Video URL (Quick&Correct). " 9 | } 10 | } -------------------------------------------------------------------------------- /video-url-parser/_locales/en_GB/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "appName": { 3 | "message": "Video Download Helper", 4 | "description": "A Powerful Video URL Parser - Get Video URL (Quick&Correct). " 5 | }, 6 | "appDesc": { 7 | "message": "Video Download Helper (Video URL Parser)", 8 | "description": "A Powerful Video URL Parser - Get Video URL (Quick&Correct). " 9 | } 10 | } -------------------------------------------------------------------------------- /video-url-parser/_locales/en_US/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "appName": { 3 | "message": "Video Download Helper", 4 | "description": "A Powerful Video URL Parser - Get Video URL (Quick&Correct). " 5 | }, 6 | "appDesc": { 7 | "message": "Video Download Helper (Video URL Parser)", 8 | "description": "A Powerful Video URL Parser - Get Video URL (Quick&Correct). " 9 | } 10 | } -------------------------------------------------------------------------------- /video-url-parser/js/background.js: -------------------------------------------------------------------------------- 1 | chrome.runtime.onMessage.addListener(function(message, sender, sendResponse) { 2 | switch(message.type) { 3 | case "bglog": 4 | console.log(message.obj); 5 | break; 6 | } 7 | return true; 8 | }); 9 | 10 | 11 | chrome.runtime.onInstalled.addListener(function(details){ 12 | if(details.reason == "install"){ 13 | //call a function to handle a first install 14 | console.log("onInstalled: Thank you! https://weibomiaopai.com"); 15 | }else if(details.reason == "update"){ 16 | //call a function to handle an update 17 | console.log("new version available: https://weibomiaopai.com"); 18 | } 19 | }); -------------------------------------------------------------------------------- /video-url-parser/main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |