// @include http://www.rai.tv/*
// @include http://soundcloud.com/*
// @include http://www.telecinco.es/*
+// @include http://slideshare.net/*
+// @include http://www.slideshare.net/*
// ==/UserScript==
//
urlRegexp: /src="([^"]*)"/,
linkDestXPath: '//div[@class="pg-bd"]',
},
+ {
+ locationRegexp: /^http:\/\/(www\.|)slideshare.net\/.*$/,
+ urlContainerXPath: '//script[@id="page-json"]',
+ urlRegexp: /"ppt_location":"([^"]*)"/,
+ processURL: function(site, object_id) {
+ var URL = 'http://s3.amazonaws.com/slideshare/' + object_id + '.xml';
+ var evt = document.createEvent('Event');
+ evt.initEvent('UrlFetched', true, true);
+ evt.site = site;
+ evt.URL = URL;
+ document.dispatchEvent(evt);
+ return;
+ },
+ linkDestXPath: '//div[@class="playerWrapper"]',
+ },
];
/* Apply different rules to different sites */