Smartnews

Sort feedly articles by likes & shares !

Smartnewsคืออะไร?

Smartnews เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Script และคุณลักษณะหลักของมันคือ "Sort feedly articles by likes & shares !"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smartnews

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

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

                        **Open Source** 

Project Link: https://github.com/openbin/smartnews

Usage : 
- Click a feed or feed folder in Feedly
- Click the downward arrow on the top right of your feeds. It'll take a second or two to load likes/shares for all the articles and sort them in descending order. 
- Make sure you change layout to "Titles" from the cogwheel. It can be permanently set under "Preference > Default View" at the bottom of the left side navigation pane.
- Additionally, next to each feed, there's a red upward/downward arrow. You can hit that to 'mark as read' all feeds above/below respectively. 
- When you click on a new feed, it automatically gets the unread count unless you have manually altered the number of feeds to sort. 
- **Update** : If sorting is not correct or articles are mixed up from previous feed, reload that particular feed.

IP address location API sponsored by https://ipapi.co

Cross browser testing is sponsored by Browserstack.com                    

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

ชื่อ Smartnews Smartnews
ID mlnmnecoojciebciapfnfjifkbofbmkm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/smartnews/mlnmnecoojciebciapfnfjifkbofbmkm
คำอธิบาย Sort feedly articles by likes & shares !
ขนาดไฟล์ 96.61 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 4.1
อัปเดตครั้งล่าสุด 2016-04-29
วันที่เผยแพร่ 2016-04-29
คะแนน 3.26/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา Script
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/openbin/smartnews
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smartnews",
    "version": "4.1",
    "description": "Sort feedly articles by likes & shares !",
    "icons": {
        "16": "icon16.png",
        "48": "icon32.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.feedly.com\/*",
                "https:\/\/*.feedly.com\/*"
            ],
            "js": [
                "jquery-latest.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*.feedly.com\/*",
        "https:\/\/*.feedly.com\/*"
    ],
    "web_accessible_resources": [
        "sort.png",
        "icon16.png",
        "icon32.png",
        "bar.png"
    ]
}