Reddit Mod Nuke Extension
For mods who want to 'nuke' (recursively delete) bad comment threads
Reddit Mod Nuke Extension란 무엇입니까?
Reddit Mod Nuke Extension은(는) dr jimbob에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For mods who want to 'nuke' (recursively delete) bad comment threads"입니다.
Reddit Mod Nuke Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Puts a "nuke" icon next to comment authors name for every comment in subreddits you mod. Clicking this removes that comment, and all child comments of that comment. Designed to ease deleting off-topic flaming argument threads of heavily moderated subreddits. Kudos to amoliski for the icon: http://www.reddit.com/r/modclub/comments/13amg8/one_of_the_raskscience_secret_weapons_is/c72tq0t --- Updates: No longer jQuery-based (now straight JavaScript). Adds icon next to user deleted comments (so you can delete the children if you want from the source). Also expands "load more comments" when present in the nuked thread and after ~4s wait will start deleting everything. (Doesn't do nested "load more comments" and doesn't do "continue this thread -->" which on click goes to new window; rather than add to the current page). 20 Feb 2013 - Updated after addition of "Ignore Reports" button, so this button is no longer triggered. 25 Aug 2014 - Actually works with the changes to reddit! 06 Oct 2014 - Works on https pages too!
확장 프로그램 기본 정보
이름 | |
ID | omndholfgmbafjdodldjlekckdneggll |
공식 URL | https://chrome.google.com/webstore/detail/reddit-mod-nuke-extension/omndholfgmbafjdodldjlekckdneggll |
설명 | For mods who want to 'nuke' (recursively delete) bad comment threads |
파일 크기 | 7.56 KB |
설치 횟수 | 1,542 |
현재 버전 | 6.283.185.307 |
최근 업데이트 | 2014-10-06 |
출시 날짜 | 2014-10-06 |
평점 | 4.19/5 총 16 개의 평점 |
개발자 | dr jimbob |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Mod Nuke Extension", "version": "6.283.185.307", "manifest_version": 2, "description": "For mods who want to 'nuke' (recursively delete) bad comment threads", "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "nuke.png" ], "content_scripts": [ { "matches": [ "http:\/\/*.reddit.com\/*", "https:\/\/*.reddit.com\/*" ], "js": [ "nuke.js" ] } ] } |