diff --git a/bridges/ItchioBridge.php b/bridges/ItchioBridge.php
new file mode 100644
index 00000000..6ba724d2
--- /dev/null
+++ b/bridges/ItchioBridge.php
@@ -0,0 +1,46 @@
+ array(
+ 'name' => 'Product URL',
+ 'exampleValue' => 'https://remedybg.itch.io/remedybg',
+ 'required' => true,
+ )
+ ));
+ const CACHE_TIMEOUT = 21600; // 6 hours
+
+ public function collectData() {
+ $url = $this->getInput('url');
+ $html = getSimpleHTMLDOM($url)
+ or returnServerError('Could not request: ' . $url);
+
+ $title = $html->find('.game_title', 0)->innertext;
+ $timestampOriginal = $html->find('span.icon-stopwatch', 0)->parent()->title;
+ $timestampFormatted = str_replace('@', '', $timestampOriginal);
+
+ $content = 'The following files are available to download:
';
+ foreach ($html->find('div.upload') as $element) {
+ $filename = $element->find('strong.name', 0)->innertext;
+ $filesize = $element->find('span.file_size', 0)->first_child()->innertext;
+ $content = $content . $filename . ' (' . $filesize . ')
';
+ }
+
+ // NOTE: At the time of writing it is not clear under which conditions
+ // itch updates the timestamp. In case they don't always update it,
+ // we include the file list as well when computing the UID hash.
+ $uidContent = $timestampFormatted . $content;
+
+ $item = array();
+ $item['uri'] = $url;
+ $item['uid'] = $uidContent;
+ $item['title'] = 'New release for ' . $title;
+ $item['content'] = $content;
+ $item['timestamp'] = $timestampFormatted;
+ $this->items[] = $item;
+ }
+}