NeoGAF Thread Summarizer
Analyses threads for most quoted posts, lets you keep track of your favourite posters, caches thread pages for fast access.
什麼是NeoGAF Thread Summarizer?
NeoGAF Thread Summarizer是由hesido開發的Chrome擴展程式,該擴展的主要功能是“Analyses threads for most quoted posts, lets you keep track of your favourite posters, caches thread pages for fast access.”。
擴展截圖
下載NeoGAF Thread Summarizer擴展crx文件
下載NeoGAF Thread Summarizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
NeoGAF thread summarizer shifts through thread pages starting from the page it was called on, and then allows you to view most quoted posts with a threshold you can set. Once a thread is analysed, you can display posts with different quote threshold values. You can also track your own or any user's posts, and replies to those posts. Pages are cached so you can switch between pages really fast. Version 1.7.0.2 Change log Further SSL fixes Version 1.7.0.1 Change log Adapted extension to site changes relating to SSL. Version 1.7.0.0 Change log New post notifications on the thread page for analysed threads, giving the extension Live thread view functionality. Version 1.6.1.2 Change log After an analysis is complete, the pages are now automatically populated for quote chains during normal navigation. This means you don't have to switch to quoted only view, and you can go on reading the threads as usual and still track conversations. Added Populate Pages option to quick settings. Version 1.5.1.2 Change log *Fixed a bug preventing refreshed cached page to be displayed *Fixed a minor bug *Fixed a memory leak *Major new feature: Recursive thread view. Now you can track reply chains. *Manually refresh page caches. Manually update cache for latest views. Version 1.4.1 Change log *This is a bug fix update. *Fixed a styling regression that caused collapse post button to not look correctly. *Fixed a bug that was preventing the last page to be updated in cache *Turning off "cache analysed pages" setting immediately deletes all page download caches. If the extension fails to update the pages of already analysed pages, you can turn this on and off to get rid of caches. Version 1.4.0 Change log *There's now an advanced options page. Linked from extensions page in chrome. *Cached pages and analysis data is automatically removed after a time of inactivity. The amount of time can be set in options page. This reduces memory consumption without the user explicitly clearing the cache. *The analysis cache and page caches are now separate entities, so you can have cached pages without analysis cache and vice versa. This will allow future enhancements to GAF browsing. *Re-analysis of threads are much faster as the extension now uses existing page caches except for the last page. Version 1.3.4.1 Change log *Fixed by-design behavior that counts the separated snippets of the same quoted post to be counted multiple times. *Now you can re-do the analysis on top of a previous analysis without having to clear thread cache. This allows you to re-analyze last page along with the added post and pages and update the thread cache without a full analysis. Page already analysed error is no longer thrown. You can start analysis from already analysed pages to update the thread cache to the latest version of the posts and page. *Some CSS style fixes Version 1.3.3.1 Change log *Slightly less memory usage when using cache function *Changed the UI a bit *Now the quoter post lists are collapsible *Options are saved and synced to cloud so you don't have to re-enter settings every time browser is closed of the extension is updated.
擴展基本資訊
名稱 | NeoGAF Thread Summarizer |
ID | aaclblmjeibhbaniomgigpbchbmbdhlk |
官方網址 | https://chromewebstore.google.com/detail/neogaf-thread-summarizer/aaclblmjeibhbaniomgigpbchbmbdhlk |
簡介 | Analyses threads for most quoted posts, lets you keep track of your favourite posters, caches thread pages for fast access. |
檔案大小 | 43.68 KB |
安裝次數 | 73 |
目前版本 | 1.7.0.2 |
更新時間 | 2016-03-24 |
上架時間 | 2016-03-24 |
評分 | 4.43/5 共 7 次評分 |
開發者 | hesido |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | http://www.neogaf.com/forum/showthread.php?t=993461 |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NeoGAF Thread Summarizer", "version": "1.7.0.2", "description": "Analyses threads for most quoted posts, lets you keep track of your favourite posters, caches thread pages for fast access.", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "noci-19.png", "default_title": "NeoGAF Thread Summarizer", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "webNavigation", "tabs", "storage", "alarms", "*:\/\/*.neogaf.com\/*" ], "icons": { "48": "noci-48.png", "128": "noci-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.neogaf.com\/forum\/showthread.php*" ], "js": [ "showresults.js" ], "css": [ "inject.css" ], "run_at": "document_start" } ], "manifest_version": 2 } |