Feedly Background Tab

Open Feedly Links in Background Tab using shortcut key

Feedly Background Tabคืออะไร?

Feedly Background Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aaron Saray และคุณลักษณะหลักของมันคือ "Open Feedly Links in Background Tab using shortcut key"

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

screenshot

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

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

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

                        Are you a power user of Feedly - but just wish the 'v' key would open tabs in the background?  This extension is for you!

Now, when you are viewing articles in list view, press ';' and the new tab opens in the background.  Or, if you'd like, customize your shortcut key in the options.  Now supports Cloudly, including PRO!                    

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

ชื่อ Feedly Background Tab Feedly Background Tab
ID gjlijkhcebalcchkhgaiflaooghmoegk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk
คำอธิบาย Open Feedly Links in Background Tab using shortcut key
ขนาดไฟล์ 15.99 KB
จำนวนการติดตั้ง 4,009
เวอร์ชันปัจจุบัน 0.13
อัปเดตครั้งล่าสุด 2017-08-11
วันที่เผยแพร่ 2017-08-11
คะแนน 3.96/5 รวมทั้งหมด 79 คะแนน
ผู้พัฒนา Aaron Saray
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/aaronsaray/feedlybackgroundtab
URL หน้าช่วยเหลือ https://github.com/aaronsaray/feedlybackgroundtab
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedly Background Tab",
    "version": "0.13",
    "manifest_version": 2,
    "description": "Open Feedly Links in Background Tab using shortcut key",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.feedly.com\/*"
            ],
            "js": [
                "js\/keypress.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/www.feedly.com\/*",
        "http:\/\/cloud.feedly.com\/*",
        "https:\/\/cloud.feedly.com\/*",
        "storage"
    ],
    "minimum_chrome_version": "21",
    "icons": {
        "128": "images\/icon_128.png"
    }
}