Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
Imgur Chrome Extension là gì?
Imgur Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi gillesbertaux, và tính năng chính của nó là "This extension shows trending posts on Imgur when a new tab is open".
Ả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 Imgur Chrome Extension
Tải xuống các tệp mở rộng Imgur Chrome Extension 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
Hello fellow Imgurian! This extension shows top posts from the front page or usersub every time you open a new tab. I added "productivity mode" to prevent the posts to display when you open a new tab. ----- Disclaimer: this project was not built by the Imgur staff. This is an unofficial Chrome Extension.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ajacnfghngjimlebbfafobbhofkmpnnp |
URL Chính Thức | https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp |
Mô tả | This extension shows trending posts on Imgur when a new tab is open |
Kích Thước Tệp | 668 KB |
Số Lần Cài Đặt | 76 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2017-01-14 |
Ngày Phát Hành | 2017-01-14 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | gillesbertaux |
[email protected] | |
Loại Thanh Toán | in_app |
Trang Web Mở Rộng | https://github.com/gillesbertaux/imgur-chrome-extension |
URL Trang Trợ Giúp | https://github.com/gillesbertaux/imgur-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Imgur Chrome Extension", "description": "This extension shows trending posts on Imgur when a new tab is open", "version": "1.0", "author": "TheMappleKindYeah", "homepage_url": "https:\/\/github.com\/gillesbertaux\/imgur-chrome-extension", "short_name": "Imgur App", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon_128.png", "48": "icon_48.png", "16": "icon_16.png" }, "chrome_url_overrides": { "newtab": "imgur.html" }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "css": [ "main.css" ], "js": [ "main.js" ] } ], "permissions": [ "storage" ] } |