Shoyu RSS/Atom Feed Preview
Simple feed preview and subscribe.
Shoyu RSS/Atom Feed Preview क्या है?
Shoyu RSS/Atom Feed Preview cmacgreg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple feed preview and subscribe."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Shoyu RSS/Atom Feed Preview एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
* 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
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ilicaedjojicckapfpfdoakbehjpfkah |
आधिकारिक URL | https://chrome.google.com/webstore/detail/shoyu-rssatom-feed-previe/ilicaedjojicckapfpfdoakbehjpfkah |
विवरण | Simple feed preview and subscribe. |
फ़ाइल का आकार | 52.13 KB |
स्थापना संख्या | 8,000 |
वर्तमान संस्करण | 2.0.3.18 |
अंतिम अपडेट | 2018-04-08 |
प्रकाशन तिथि | 2018-04-08 |
रेटिंग | 4.44/5 कुल 73 रेटिंग्स |
डेवलपर | cmacgreg |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://code.google.com/p/shoyu/ |
सहायता पृष्ठ URL | http://twitter.com/cmacgreg |
समर्थित भाषाएँ | 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": [ "*" ] } |