Shoyu RSS/Atom Feed Preview

Simple feed preview and subscribe.

ما هو Shoyu RSS/Atom Feed Preview؟

Shoyu RSS/Atom Feed Preview هو إضافة Chrome تم تطويرها بواسطة cmacgreg، والميزة الرئيسية لها هي "Simple feed preview and subscribe.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Shoyu RSS/Atom Feed Preview

قم بتنزيل ملفات الامتداد Shoyu RSS/Atom Feed Preview بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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                    

معلومات أساسية عن التمديد

الاسم Shoyu RSS/Atom Feed Preview Shoyu RSS/Atom Feed Preview
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/
عنوان صفحة المساعدة 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": [
        "*"
    ]
}