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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |