Newsfeeder Quick-launch

Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS/Atom reader.

Newsfeeder Quick-launchคืออะไร?

Newsfeeder Quick-launch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://esstudio.site และคุณลักษณะหลักของมันคือ "Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS/Atom reader."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Newsfeeder Quick-launch

ดาวน์โหลดไฟล์ส่วนขยาย Newsfeeder Quick-launch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension quick launches the newsfeeder app, the easiest way to follow news from your favorite websites, blogs and news sites. 

With newsfeeder you load your feeds quickly from other rss readers using the OPML format. You don't need to login, the app is fast and it just works. If you want to give feedback or tips, please send a message: [email protected] or use the contact form: esstudio.site/contact.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Newsfeeder Quick-launch Newsfeeder Quick-launch
ID kokdfdgkmhaimfmjhcdfehgbhhkcnkmk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/newsfeeder-quick-launch/kokdfdgkmhaimfmjhcdfehgbhhkcnkmk
คำอธิบาย Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS/Atom reader.
ขนาดไฟล์ 22.91 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-03-28
วันที่เผยแพร่ 2019-03-25
ผู้พัฒนา http://esstudio.site
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://newsfeeder.esstudio.site
URL หน้าช่วยเหลือ https://esstudio.site/contact
URL หน้านโยบายความเป็นส่วนตัว https://echosierrastudio.github.io/EchoSierraStudio/chrome-web-extensions-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Newsfeeder Quick-launch",
    "short_name": "Newsfeeder",
    "version": "1.0",
    "description": "Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS\/Atom reader.",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "*:\/\/*\/*",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "assets\/icon128-grey.png"
    },
    "manifest_version": 2
}