Gridoid for Twitter and YouTube

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

Gridoid for Twitter and YouTube क्या है?

Gridoid for Twitter and YouTube http://gridoid.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gridoid for Twitter and YouTube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 🔘                    

एक्सटेंशन की मूल जानकारी

नाम Gridoid for Twitter and YouTube Gridoid for Twitter and YouTube
ID bhicedmcbjmeppeannndieioafaglmeg
आधिकारिक URL https://chrome.google.com/webstore/detail/gridoid-for-twitter-and-y/bhicedmcbjmeppeannndieioafaglmeg
विवरण Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.
फ़ाइल का आकार 34.08 KB
स्थापना संख्या 70
वर्तमान संस्करण 0.0.0.15
अंतिम अपडेट 2018-10-24
प्रकाशन तिथि 2018-10-24
रेटिंग 2.43/5 कुल 7 रेटिंग्स
डेवलपर http://gridoid.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gridoid.com
गोपनीयता नीति पृष्ठ URL https://gridoid.com/privacy-policy
समर्थित भाषाएँ 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"
    ]
}