Reddit Stalker Extension
One-click solution to finding a users posts in any given subreddit.
Reddit Stalker Extension क्या है?
Reddit Stalker Extension jontelang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "One-click solution to finding a users posts in any given subreddit."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Stalker Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |