Shoyu RSS/Atom Feed Preview
Simple feed preview and subscribe.
Qu'est-ce que Shoyu RSS/Atom Feed Preview ?
Shoyu RSS/Atom Feed Preview est une extension Chrome développée par cmacgreg, et sa fonction principale est "Simple feed preview and subscribe.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Shoyu RSS/Atom Feed Preview
Téléchargez les fichiers d'extension Shoyu RSS/Atom Feed Preview au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
* discover RSS/Atom feeds from web sites * display feeds within Chrome, sorted by date * subscribe to a feed with an online or local reader Feed discovery and subscription are derived from the RSS Subscription Extension (by Google) version 2.2.2. Feed preview has been enhanced to: * support more standard feed containers * reduce HTML formatting * remove embedded media * (somewhat) allow use of style sheets compatible with Sage RSS for Mozilla Firefox * support RSS enclosures * allow desktop reader use Recent changes: * default subscription URL updates For feed updates, directly within Chrome, check out "Shoyu Feed Updates" at: https://chrome.google.com/extensions/detail/opnimlbiokbgomihhpobbgnlfolgdada
Informations de Base sur l'Extension
Nom | |
ID | ilicaedjojicckapfpfdoakbehjpfkah |
URL Officiel | https://chrome.google.com/webstore/detail/shoyu-rssatom-feed-previe/ilicaedjojicckapfpfdoakbehjpfkah |
Description | Simple feed preview and subscribe. |
Taille du Fichier | 52.13 KB |
Nombre d'Installations | 8,000 |
Version Actuelle | 2.0.3.18 |
Dernière Mise à Jour | 2018-04-08 |
Date de Publication | 2018-04-08 |
Évaluation | 4.44/5 Total 73 Évaluations |
Développeur | cmacgreg |
Type de Paiement | free |
Site Web de l'Extension | http://code.google.com/p/shoyu/ |
URL de la Page d'Aide | http://twitter.com/cmacgreg |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "sniff_common.js", "doc_start.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" }, { "js": [ "sniff_common.js", "feed_finder.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Simple feed preview and subscribe.", "icons": { "128": "shoyu-icon-128x128.png" }, "name": "Shoyu RSS\/Atom Feed Preview", "options_page": "options.html", "page_action": { "default_icon": "feed-icon-16x16.png", "default_title": "Discover Feeds", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "version": "2.0.3.18", "manifest_version": 2, "web_accessible_resources": [ "*" ] } |