Reddit Column View
Splits posts into columns. Compatible with old and new Reddit layouts.
Cos'è Reddit Column View?
Reddit Column View è un'estensione di Chrome sviluppata da omniZero, e la sua funzione principale è "Splits posts into columns. Compatible with old and new Reddit layouts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Column View
Scarica i file di estensione Reddit Column View 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
Rearranges posts into columns! Works with old Reddit and with redesign (in Card layout; Classic and Compact aren't currently fully supported).
Number of columns scales with screen resolution and can be forced via extension's settings. Informazioni di Base sull'Estensione
| Nome | |
| ID | ipomnohmaidpmcbgnlmcndlhdlmikicc |
| URL Ufficiale | https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc |
| Descrizione | Splits posts into columns. Compatible with old and new Reddit layouts. |
| Dimensione del File | 97.43 KB |
| Conteggio Installazioni | 157 |
| Versione Corrente | 1.0.7 |
| Ultimo Aggiornamento | 2021-02-15 |
| Data di Pubblicazione | 2021-01-14 |
| Valutazione | 4.60/5 Totale 5 Valutazioni |
| Sviluppatore | omniZero |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit Column View",
"version": "1.0.7",
"description": "Splits posts into columns. Compatible with old and new Reddit layouts.",
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
}
},
"icons": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.reddit.com\/*",
"https:\/\/old.reddit.com\/*"
],
"js": [
"main.js"
]
}
],
"web_accessible_resources": [
"images\/*.png",
"images\/*.ico"
],
"manifest_version": 2
} | |