Gridoid for Twitter and YouTube

Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.

¿Qué es Gridoid for Twitter and YouTube?

Gridoid for Twitter and YouTube es una extensión de Chrome desarrollada por http://gridoid.com, y su función principal es "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Gridoid for Twitter and YouTube

Descarga archivos de extensión Gridoid for Twitter and YouTube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        If you spend time on Twitter, YouTube, or Reddit, check out this offering of changing your user experience.  I've made changes to make the user experience better and more rewarding.  Much of the display has been condensed, give it a shot.

Turn your Twitter feed and YouTube comments into a grid layout.

Twitter Features:
- Two or three column of tweets depending on screen size.
- Shrunk header for quicker tweet reading.

YouTube Features:
- Two column comments.
- Adjusted comment display to make comment text easier to read.
- Emojis are added to show relationship between reply and target of reply.
- Replies to the original comment thread start and end with 🔘                    

Información Básica de la Extensión

Nombre Gridoid for Twitter and YouTube Gridoid for Twitter and YouTube
ID bhicedmcbjmeppeannndieioafaglmeg
URL Oficial https://chrome.google.com/webstore/detail/gridoid-for-twitter-and-y/bhicedmcbjmeppeannndieioafaglmeg
Descripción Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.
Tamaño del Archivo 34.08 KB
Cantidad de Instalaciones 70
Versión Actual 0.0.0.15
Última Actualización 2018-10-24
Fecha de Publicación 2018-10-24
Calificación 2.43/5 Total de 7 Calificaciones
Desarrollador http://gridoid.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://gridoid.com
URL de la Página de Política de Privacidad https://gridoid.com/privacy-policy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gridoid for Twitter and YouTube",
    "version": "0.0.0.15",
    "manifest_version": 2,
    "description": "Grid layout for Twitter and YouTube, switch on\/off with simple button; use for a better user experience.",
    "background": {
        "scripts": [
            "GridoidBackground.js",
            "onInstalled.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/*.youtube.com\/*",
        "https:\/\/*.twitter.com\/*",
        "activeTab",
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Gridoid",
        "default_popup": "popup.html",
        "default_icon": "Logo.png"
    },
    "content_scripts": [
        {
            "js": [
                "YouGridContent.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        },
        {
            "css": [
                "TwitterGridStyles.css"
            ],
            "js": [
                "bricks.js",
                "TwitterGridContent.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "bricks.js",
        "TwitterGridScript.js",
        "onInstalled.js",
        "TwitterGridStyles.css",
        "YouGridStyles.css",
        "YouGridScript.js",
        "LogoOff.png",
        "Logo.png",
        "light_noisy_grid.jpg"
    ]
}