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.”。
擴展截圖
下載Gridoid for Twitter and YouTube擴展crx文件
下載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 🔘
擴展基本資訊
名稱 | |
ID | bhicedmcbjmeppeannndieioafaglmeg |
官方網址 | 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" ] } |