Reddit News Fixer
Fixes Reddit News Subreddit Names
Cos'è Reddit News Fixer?
Reddit News Fixer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Fixes Reddit News Subreddit Names".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit News Fixer
Scarica i file di estensione Reddit News Fixer 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
Still subscribed to r/news and r/worldnews? Surf in smug style with this more truthful helper for renaming the links to those subreddits.
Informazioni di Base sull'Estensione
Nome | Reddit News Fixer |
ID | olhjigkfnlocckgkfhgikjejjcdipgcp |
URL Ufficiale | https://chromewebstore.google.com/detail/reddit-news-fixer/olhjigkfnlocckgkfhgikjejjcdipgcp |
Descrizione | Fixes Reddit News Subreddit Names |
Dimensione del File | 55.02 KB |
Conteggio Installazioni | 12 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2014-02-12 |
Data di Pubblicazione | 2014-02-12 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit News Fixer", "version": "1.1", "description": "Fixes Reddit News Subreddit Names", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "icon-19.png", "default_title": "News Subreddits Fixed!" }, "content_scripts": [ { "matches": [ "http:\/\/*.reddit.com\/*", "https:\/\/*.reddit.com\/*" ], "js": [ "jquery.min.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |