Seeking New
This extension seeks the next new comment in a Seeking Alpha article.
Seeking Newคืออะไร?
Seeking New เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hilo และคุณลักษณะหลักของมันคือ "This extension seeks the next new comment in a Seeking Alpha article."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Seeking New
ดาวน์โหลดไฟล์ส่วนขยาย Seeking New ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds a toolbar button that will automatically scroll the next new comment of a Seeking Alpha article into view each time it is clicked. * Specific comments can be jumped to by selecting them from context menu (right click). * Left clicking on the orange "New" icon in the article will scroll to the next new comment. * Right clicking on the orange "New" icon in the article will scroll to the previous new comment. * Shift-Right clicking on the commenter's name will hide/show comments for this commenter. No more endless scrolling and visually scanning for the orange "New" icon, it's just a click away.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Seeking New |
ID | diecolhbhidknefaajchdlmhemljidio |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/seeking-new/diecolhbhidknefaajchdlmhemljidio |
คำอธิบาย | This extension seeks the next new comment in a Seeking Alpha article. |
ขนาดไฟล์ | 7.04 KB |
จำนวนการติดตั้ง | 90 |
เวอร์ชันปัจจุบัน | 2.7 |
อัปเดตครั้งล่าสุด | 2017-03-26 |
วันที่เผยแพร่ | 2017-03-26 |
คะแนน | 4.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Hilo |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Seeking New", "description": "This extension seeks the next new comment in a Seeking Alpha article.", "version": "2.7", "icons": { "16": "seekingnew16.png", "48": "seekingnew48.png", "128": "seekingnew128.png" }, "permissions": [ "contextMenus", "tabs" ], "browser_action": { "default_icon": "seekingnew16.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "seekingnew.js" ], "matches": [ "http:\/\/seekingalpha.com\/*", "https:\/\/seekingalpha.com\/*" ] } ] } |