Gridoid for Twitter and YouTube
Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.
Apa itu Gridoid for Twitter and YouTube?
Gridoid for Twitter and YouTube adalah ekstensi Chrome yang dikembangkan oleh http://gridoid.com, dan fitur utamanya adalah "Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Gridoid for Twitter and YouTube
Unduh file ekstensi Gridoid for Twitter and YouTube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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 🔘
Informasi Dasar Ekstensi
Nama | |
ID | bhicedmcbjmeppeannndieioafaglmeg |
URL Resmi | https://chrome.google.com/webstore/detail/gridoid-for-twitter-and-y/bhicedmcbjmeppeannndieioafaglmeg |
Deskripsi | Grid layout for Twitter and YouTube, switch on/off with simple button; use for a better user experience. |
Ukuran File | 34.08 KB |
Jumlah Instalasi | 70 |
Versi Saat Ini | 0.0.0.15 |
Terakhir Diperbarui | 2018-10-24 |
Tanggal Publikasi | 2018-10-24 |
Penilaian | 2.43/5 Total 7 Penilaian |
Pengembang | http://gridoid.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://gridoid.com |
URL Halaman Kebijakan Privasi | https://gridoid.com/privacy-policy |
Bahasa yang Didukung | 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" ] } |