9GAG Lite
Change 9gag as you want to work like it should
9GAG Lite là gì?
9GAG Lite là một tiện ích mở rộng Chrome được phát triển bởi geiszla, và tính năng chính của nó là "Change 9gag as you want to work like it should".
Ả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 9GAG Lite
Tải xuống các tệp mở rộng 9GAG Lite 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
New features - Zoom into profile pictures when user hovers over them - Download images/GIFs/videos - Show length of videos and GIFs - Prevent autoplaying GIFs/videos All features can be turned on and off with a simple switch when clicking on the extension icon. Features: - Choose between light and dark theme - Hide ads - Simplify website layout, remove clutter - Limit posts on hot and trending page by number of points - Choose which type of posts to see (images/GIFs/videos) - Download images/GIFs/videos - Show length of videos and GIFs - Prevent autoplaying GIFs/videos - Zoom into profile pictures when user hovers over them Planned features: - Prevent post preload to save data - Show OP's name if she/he commented on the post - Copy link button under posts - Bigger posts - Normalize post order - Don't show already seen posts - Prevent loading hot posts in trending (by point limit) - Multiple page layout options (e.g. hide only social links, hide only sidebar, etc.) - Favorites - Censor emojis ;) More ideas are welcome.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | 9GAG Lite |
ID | namifldkgnlkiocmnhhpbppcoimcpobm |
URL Chính Thức | https://chromewebstore.google.com/detail/9gag-lite/namifldkgnlkiocmnhhpbppcoimcpobm |
Mô tả | Change 9gag as you want to work like it should |
Kích Thước Tệp | 26.04 KB |
Số Lần Cài Đặt | 35 |
Phiên Bản Hiện Tại | 1.1.3 |
Cập Nhật Lần Cuối | 2019-01-10 |
Ngày Phát Hành | 2019-01-10 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | geiszla |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/geiszla/9gag-lite |
URL Trang Trợ Giúp | https://github.com/geiszla/9gag-lite/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "9GAG Lite", "version": "1.1.3", "description": "Change 9gag as you want to work like it should", "minimum_chrome_version": "53", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "storage", "tabs", "contextMenus", "downloads" ], "options_page": "options\/options.html", "browser_action": { "default_title": "9Gag Lite Options", "default_popup": "options\/options_popup.html" }, "background": { "scripts": [ "global.js", "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "global.js", "scripts\/setup.js" ], "run_at": "document_start", "matches": [ "*:\/\/*.9gag.com\/*" ] }, { "js": [ "scripts\/content.js" ], "run_at": "document_end", "matches": [ "*:\/\/*.9gag.com\/*" ] }, { "js": [ "scripts\/fixup.js" ], "matches": [ "*:\/\/*.9gag.com\/*" ] } ], "web_accessible_resources": [ "styles\/*" ] } |