Reddit Stalker Extension
One-click solution to finding a users posts in any given subreddit.
Reddit Stalker Extension란 무엇입니까?
Reddit Stalker Extension은(는) jontelang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "One-click solution to finding a users posts in any given subreddit."입니다.
확장 프로그램 스크린샷
Reddit Stalker Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With this extension you can search through any users submission-history in one click. It will look for specific subreddits that you choose and display links to each of the submissions. For example if you want to find every submission in /r/funny from user ArnoldX it will return a list like this 1,2,3,4,5 where each number is a link to ArnoldXs submissions. For support, suggestions or anything else: [email protected]
확장 프로그램 기본 정보
이름 | |
ID | aiihialdkgonkmeacbemjjanjnkodhhe |
공식 URL | https://chrome.google.com/webstore/detail/reddit-stalker-extension/aiihialdkgonkmeacbemjjanjnkodhhe |
설명 | One-click solution to finding a users posts in any given subreddit. |
파일 크기 | 343 KB |
설치 횟수 | 124 |
현재 버전 | 0.4 |
최근 업데이트 | 2012-12-12 |
출시 날짜 | 2012-12-12 |
평점 | 2.50/5 총 2 개의 평점 |
개발자 | jontelang |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jontelang/RedditStalkerExtension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Stalker Extension", "version": "0.4", "manifest_version": 2, "description": "One-click solution to finding a users posts in any given subreddit.", "permissions": [ "storage" ], "background": { "page": "background.html" }, "browser_action": { "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" }, "default_title": "Reddit stalk.", "default_popup": "fragments\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/*" ], "js": [ "lib\/jquery-1.8.3.min.js", "scripts\/main.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "scripts\/l.gif" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } } |