Reddit+
Reddit+
Cos'è Reddit+?
Reddit+ è un'estensione di Chrome sviluppata da @kennydude, e la sua funzione principale è "Reddit+".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit+
Scarica i file di estensione Reddit+ 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
Reddit+ is an extension which improves Reddit.
Currently it does
- Makes Reddit mobile-friendly (works on Firefox for Android, Chrome does not have extensions at the time of writing)
- Preview
- Preview of imgur etc
Code is available on GitHub -- https://github.com/kennydude/redditplus Informazioni di Base sull'Estensione
| Nome | |
| ID | djinnjnojhiahjgjahicofaakpmpdfhc |
| URL Ufficiale | https://chrome.google.com/webstore/detail/reddit+/djinnjnojhiahjgjahicofaakpmpdfhc |
| Descrizione | Reddit+ |
| Dimensione del File | 75.52 KB |
| Conteggio Installazioni | 13 |
| Versione Corrente | 1.4 |
| Ultimo Aggiornamento | 2013-05-19 |
| Data di Pubblicazione | 2013-05-19 |
| Sviluppatore | @kennydude |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/kennydude/redditplus |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit+",
"version": "1.4",
"manifest_version": 2,
"description": "Reddit+",
"background": {
"persistent": false,
"scripts": [
"bg.js"
]
},
"permissions": [
"*:\/\/*.reddit.com\/*",
"*:\/\/*.imgur.com\/*",
"*:\/\/play.google.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.reddit.com\/*"
],
"js": [
"data\/zepto.min.js",
"chrome.js",
"data\/marked.js",
"data\/redditplus.js",
"data\/magpopup.js"
],
"css": [
"data\/redditplus.css",
"data\/magpopup.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"data\/button.png",
"data\/button-close.png",
"data\/loading.gif"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |