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 là gì?
Gridoid for Twitter and YouTube là một tiện ích mở rộng Chrome được phát triển bởi http://gridoid.com, và tính năng chính của nó là "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gridoid for Twitter and YouTube
Tải xuống các tệp mở rộng Gridoid for Twitter and YouTube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 🔘
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bhicedmcbjmeppeannndieioafaglmeg |
URL Chính Thức | https://chrome.google.com/webstore/detail/gridoid-for-twitter-and-y/bhicedmcbjmeppeannndieioafaglmeg |
Mô tả | Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience. |
Kích Thước Tệp | 34.08 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 0.0.0.15 |
Cập Nhật Lần Cuối | 2018-10-24 |
Ngày Phát Hành | 2018-10-24 |
Đánh Giá | 2.43/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | http://gridoid.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://gridoid.com |
URL Trang Chính Sách Bảo Mật | https://gridoid.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |