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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gridoid for Twitter and YouTube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}