Files
SponsorBlock/background.js
2019-01-15 19:01:37 +00:00

16 lines
461 B
JavaScript

chrome.tabs.onUpdated.addListener(
function(tabId, changeInfo, tab) {
if (changeInfo.url) {
chrome.tabs.sendMessage( tabId, {
message: 'ytvideoid',
id: youtube_parser(changeInfo.url)
})
}
}
);
function youtube_parser(url) {
var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
var match = url.match(regExp);
return (match && match[7].length == 11) ? match[7] : false;
}