Reddit Column View

Splits posts into columns. Compatible with old and new Reddit layouts.

Qu'est-ce que Reddit Column View ?

Reddit Column View est une extension Chrome développée par omniZero, et sa fonction principale est "Splits posts into columns. Compatible with old and new Reddit layouts.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Reddit Column View

Téléchargez les fichiers d'extension Reddit Column View au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reddit Column View Reddit Column View
ID ipomnohmaidpmcbgnlmcndlhdlmikicc
URL Officiel https://chromewebstore.google.com/detail/reddit-column-view/ipomnohmaidpmcbgnlmcndlhdlmikicc
Description Splits posts into columns. Compatible with old and new Reddit layouts.
Taille du Fichier 97.43 KB
Nombre d'Installations 157
Version Actuelle 1.0.7
Dernière Mise à Jour 2021-02-15
Date de Publication 2021-01-14
Évaluation 4.60/5 Total 5 Évaluations
Développeur omniZero
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}