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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://gridoid.com และคุณลักษณะหลักของมันคือ "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gridoid for Twitter and YouTube

ดาวน์โหลดไฟล์ส่วนขยาย Gridoid for Twitter and YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}