├── .gitignore ├── LICENSE ├── README.md ├── add-single.php ├── add-tag.php ├── add.php ├── autoloader.php ├── classes ├── favicon.php ├── fof-prefs.php ├── pdolog.php └── svghistogram.php ├── data └── cookies.txt.dist ├── delete.php ├── favicon.php ├── feed-action.php ├── feed-detail.php ├── fof-asset-custom.php.dist ├── fof-asset.php ├── fof-config.php.dist ├── fof-custom.css.dist ├── fof-db.php ├── fof-install.php ├── fof-main.php ├── fof-render.php ├── fof.css ├── fof.js ├── footer.php ├── header.php ├── image ├── feed-icon.png ├── grippy.png ├── spinner.gif ├── tag-icon.svg ├── throbber.gif └── warn.gif ├── img.php ├── index.php ├── install.php ├── item.php ├── items.php ├── library ├── SimplePie.php ├── SimplePie │ ├── Author.php │ ├── Cache.php │ ├── Cache │ │ ├── Base.php │ │ ├── DB.php │ │ ├── File.php │ │ ├── Memcache.php │ │ ├── Memcached.php │ │ ├── MySQL.php │ │ └── Redis.php │ ├── Caption.php │ ├── Category.php │ ├── Content │ │ └── Type │ │ │ └── Sniffer.php │ ├── Copyright.php │ ├── Core.php │ ├── Credit.php │ ├── Decode │ │ └── HTML │ │ │ └── Entities.php │ ├── Enclosure.php │ ├── Exception.php │ ├── File.php │ ├── HTTP │ │ └── Parser.php │ ├── IRI.php │ ├── Item.php │ ├── Locator.php │ ├── Misc.php │ ├── Net │ │ └── IPv6.php │ ├── Parse │ │ └── Date.php │ ├── Parser.php │ ├── Rating.php │ ├── Registry.php │ ├── Restriction.php │ ├── Sanitize.php │ ├── Source.php │ ├── XML │ │ └── Declaration │ │ │ └── Parser.php │ └── gzdecode.php └── urljoin.php ├── login.php ├── logout.php ├── microsummary.php ├── opml.php ├── plugins ├── adv_autotag.ini ├── adv_autotag.php ├── autotag.ini ├── autotag.php ├── fix_svg_dimensions.ini ├── fix_svg_dimensions.php ├── images_by_proxy.ini ├── images_by_proxy.php ├── item_targets.ini ├── item_targets.php ├── mediaplayer.swf ├── mini_podcast.png ├── permalink.ini ├── permalink.php ├── place_audio.png ├── place_video.png ├── plain.ini ├── plain.php ├── reddit.ini ├── reddit.php ├── remove_media_autoplay.ini ├── remove_media_autoplay.php ├── share-off.gif ├── share-on.gif ├── sharing.ini ├── sharing.php ├── text_content.ini ├── text_content.php ├── twitter.ini ├── twitter.php ├── vimeo.ini ├── vimeo.php ├── wordpress.ini ├── wordpress.php ├── wordpress.png ├── youtube.ini └── youtube.php ├── prefs.php ├── set-prefs.php ├── shared.php ├── sidebar.php ├── uninstall.php ├── update-quiet.php ├── update-single.php ├── update.php ├── view-action.php └── websub.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/README.md -------------------------------------------------------------------------------- /add-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/add-single.php -------------------------------------------------------------------------------- /add-tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/add-tag.php -------------------------------------------------------------------------------- /add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/add.php -------------------------------------------------------------------------------- /autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/autoloader.php -------------------------------------------------------------------------------- /classes/favicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/classes/favicon.php -------------------------------------------------------------------------------- /classes/fof-prefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/classes/fof-prefs.php -------------------------------------------------------------------------------- /classes/pdolog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/classes/pdolog.php -------------------------------------------------------------------------------- /classes/svghistogram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/classes/svghistogram.php -------------------------------------------------------------------------------- /data/cookies.txt.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/data/cookies.txt.dist -------------------------------------------------------------------------------- /delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/delete.php -------------------------------------------------------------------------------- /favicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/favicon.php -------------------------------------------------------------------------------- /feed-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/feed-action.php -------------------------------------------------------------------------------- /feed-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/feed-detail.php -------------------------------------------------------------------------------- /fof-asset-custom.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-asset-custom.php.dist -------------------------------------------------------------------------------- /fof-asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-asset.php -------------------------------------------------------------------------------- /fof-config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-config.php.dist -------------------------------------------------------------------------------- /fof-custom.css.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-custom.css.dist -------------------------------------------------------------------------------- /fof-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-db.php -------------------------------------------------------------------------------- /fof-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-install.php -------------------------------------------------------------------------------- /fof-main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-main.php -------------------------------------------------------------------------------- /fof-render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof-render.php -------------------------------------------------------------------------------- /fof.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof.css -------------------------------------------------------------------------------- /fof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/fof.js -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/header.php -------------------------------------------------------------------------------- /image/feed-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/image/feed-icon.png -------------------------------------------------------------------------------- /image/grippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/image/grippy.png -------------------------------------------------------------------------------- /image/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/image/spinner.gif -------------------------------------------------------------------------------- /image/tag-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/image/tag-icon.svg -------------------------------------------------------------------------------- /image/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/image/throbber.gif -------------------------------------------------------------------------------- /image/warn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/image/warn.gif -------------------------------------------------------------------------------- /img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/img.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/install.php -------------------------------------------------------------------------------- /item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/item.php -------------------------------------------------------------------------------- /items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/items.php -------------------------------------------------------------------------------- /library/SimplePie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie.php -------------------------------------------------------------------------------- /library/SimplePie/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Author.php -------------------------------------------------------------------------------- /library/SimplePie/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache.php -------------------------------------------------------------------------------- /library/SimplePie/Cache/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache/Base.php -------------------------------------------------------------------------------- /library/SimplePie/Cache/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache/DB.php -------------------------------------------------------------------------------- /library/SimplePie/Cache/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache/File.php -------------------------------------------------------------------------------- /library/SimplePie/Cache/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache/Memcache.php -------------------------------------------------------------------------------- /library/SimplePie/Cache/Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache/Memcached.php -------------------------------------------------------------------------------- /library/SimplePie/Cache/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache/MySQL.php -------------------------------------------------------------------------------- /library/SimplePie/Cache/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Cache/Redis.php -------------------------------------------------------------------------------- /library/SimplePie/Caption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Caption.php -------------------------------------------------------------------------------- /library/SimplePie/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Category.php -------------------------------------------------------------------------------- /library/SimplePie/Content/Type/Sniffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Content/Type/Sniffer.php -------------------------------------------------------------------------------- /library/SimplePie/Copyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Copyright.php -------------------------------------------------------------------------------- /library/SimplePie/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Core.php -------------------------------------------------------------------------------- /library/SimplePie/Credit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Credit.php -------------------------------------------------------------------------------- /library/SimplePie/Decode/HTML/Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Decode/HTML/Entities.php -------------------------------------------------------------------------------- /library/SimplePie/Enclosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Enclosure.php -------------------------------------------------------------------------------- /library/SimplePie/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Exception.php -------------------------------------------------------------------------------- /library/SimplePie/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/File.php -------------------------------------------------------------------------------- /library/SimplePie/HTTP/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/HTTP/Parser.php -------------------------------------------------------------------------------- /library/SimplePie/IRI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/IRI.php -------------------------------------------------------------------------------- /library/SimplePie/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Item.php -------------------------------------------------------------------------------- /library/SimplePie/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Locator.php -------------------------------------------------------------------------------- /library/SimplePie/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Misc.php -------------------------------------------------------------------------------- /library/SimplePie/Net/IPv6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Net/IPv6.php -------------------------------------------------------------------------------- /library/SimplePie/Parse/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Parse/Date.php -------------------------------------------------------------------------------- /library/SimplePie/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Parser.php -------------------------------------------------------------------------------- /library/SimplePie/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Rating.php -------------------------------------------------------------------------------- /library/SimplePie/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Registry.php -------------------------------------------------------------------------------- /library/SimplePie/Restriction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Restriction.php -------------------------------------------------------------------------------- /library/SimplePie/Sanitize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Sanitize.php -------------------------------------------------------------------------------- /library/SimplePie/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/Source.php -------------------------------------------------------------------------------- /library/SimplePie/XML/Declaration/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/XML/Declaration/Parser.php -------------------------------------------------------------------------------- /library/SimplePie/gzdecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/SimplePie/gzdecode.php -------------------------------------------------------------------------------- /library/urljoin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/library/urljoin.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/logout.php -------------------------------------------------------------------------------- /microsummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/microsummary.php -------------------------------------------------------------------------------- /opml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/opml.php -------------------------------------------------------------------------------- /plugins/adv_autotag.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/adv_autotag.ini -------------------------------------------------------------------------------- /plugins/adv_autotag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/adv_autotag.php -------------------------------------------------------------------------------- /plugins/autotag.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/autotag.ini -------------------------------------------------------------------------------- /plugins/autotag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/autotag.php -------------------------------------------------------------------------------- /plugins/fix_svg_dimensions.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/fix_svg_dimensions.ini -------------------------------------------------------------------------------- /plugins/fix_svg_dimensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/fix_svg_dimensions.php -------------------------------------------------------------------------------- /plugins/images_by_proxy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/images_by_proxy.ini -------------------------------------------------------------------------------- /plugins/images_by_proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/images_by_proxy.php -------------------------------------------------------------------------------- /plugins/item_targets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/item_targets.ini -------------------------------------------------------------------------------- /plugins/item_targets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/item_targets.php -------------------------------------------------------------------------------- /plugins/mediaplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/mediaplayer.swf -------------------------------------------------------------------------------- /plugins/mini_podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/mini_podcast.png -------------------------------------------------------------------------------- /plugins/permalink.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/permalink.ini -------------------------------------------------------------------------------- /plugins/permalink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/permalink.php -------------------------------------------------------------------------------- /plugins/place_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/place_audio.png -------------------------------------------------------------------------------- /plugins/place_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/place_video.png -------------------------------------------------------------------------------- /plugins/plain.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/plain.ini -------------------------------------------------------------------------------- /plugins/plain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/plain.php -------------------------------------------------------------------------------- /plugins/reddit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/reddit.ini -------------------------------------------------------------------------------- /plugins/reddit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/reddit.php -------------------------------------------------------------------------------- /plugins/remove_media_autoplay.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/remove_media_autoplay.ini -------------------------------------------------------------------------------- /plugins/remove_media_autoplay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/remove_media_autoplay.php -------------------------------------------------------------------------------- /plugins/share-off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/share-off.gif -------------------------------------------------------------------------------- /plugins/share-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/share-on.gif -------------------------------------------------------------------------------- /plugins/sharing.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/sharing.ini -------------------------------------------------------------------------------- /plugins/sharing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/sharing.php -------------------------------------------------------------------------------- /plugins/text_content.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/text_content.ini -------------------------------------------------------------------------------- /plugins/text_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/text_content.php -------------------------------------------------------------------------------- /plugins/twitter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/twitter.ini -------------------------------------------------------------------------------- /plugins/twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/twitter.php -------------------------------------------------------------------------------- /plugins/vimeo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/vimeo.ini -------------------------------------------------------------------------------- /plugins/vimeo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/vimeo.php -------------------------------------------------------------------------------- /plugins/wordpress.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/wordpress.ini -------------------------------------------------------------------------------- /plugins/wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/wordpress.php -------------------------------------------------------------------------------- /plugins/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/wordpress.png -------------------------------------------------------------------------------- /plugins/youtube.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/youtube.ini -------------------------------------------------------------------------------- /plugins/youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/plugins/youtube.php -------------------------------------------------------------------------------- /prefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/prefs.php -------------------------------------------------------------------------------- /set-prefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/set-prefs.php -------------------------------------------------------------------------------- /shared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/shared.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/sidebar.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/uninstall.php -------------------------------------------------------------------------------- /update-quiet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/update-quiet.php -------------------------------------------------------------------------------- /update-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/update-single.php -------------------------------------------------------------------------------- /update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/update.php -------------------------------------------------------------------------------- /view-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/view-action.php -------------------------------------------------------------------------------- /websub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanSixty/Feed-on-Feeds/HEAD/websub.php --------------------------------------------------------------------------------