Gridoid for Twitter and YouTube

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

What is Gridoid for Twitter and YouTube?

Gridoid for Twitter and YouTube is a Chrome extension developed by http://gridoid.com, and its main feature is "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.".

Extension Screenshots

screenshot
screenshot

Download Gridoid for Twitter and YouTube Extension CRX File

Download Gridoid for Twitter and YouTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 🔘                    

Extension Basic Information

Name Gridoid for Twitter and YouTube Gridoid for Twitter and YouTube
ID bhicedmcbjmeppeannndieioafaglmeg
Official URL https://chrome.google.com/webstore/detail/gridoid-for-twitter-and-y/bhicedmcbjmeppeannndieioafaglmeg
Description Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.
File Size 34.08 KB
Installation Count 70
Current Version 0.0.0.15
Last Updated 2018-10-24
Publish Date 2018-10-24
Rating 2.43/5 Total 7 Ratings
Developer http://gridoid.com
Email [email protected]
Payment Type free
Extension Website https://gridoid.com
Privacy Policy Page URL https://gridoid.com/privacy-policy
Supported Languages 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"
    ]
}