Reddit Stalker Extension
One-click solution to finding a users posts in any given subreddit.
Cos'è Reddit Stalker Extension?
Reddit Stalker Extension è un'estensione di Chrome sviluppata da jontelang, e la sua funzione principale è "One-click solution to finding a users posts in any given subreddit.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Stalker Extension
Scarica i file di estensione Reddit Stalker Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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]
Informazioni di Base sull'Estensione
Nome | |
ID | aiihialdkgonkmeacbemjjanjnkodhhe |
URL Ufficiale | https://chrome.google.com/webstore/detail/reddit-stalker-extension/aiihialdkgonkmeacbemjjanjnkodhhe |
Descrizione | One-click solution to finding a users posts in any given subreddit. |
Dimensione del File | 343 KB |
Conteggio Installazioni | 124 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2012-12-12 |
Data di Pubblicazione | 2012-12-12 |
Valutazione | 2.50/5 Totale 2 Valutazioni |
Sviluppatore | jontelang |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jontelang/RedditStalkerExtension |
Lingue Supportate | 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" } } |