Degallerify
This extension will convert all instances of imgur.com/gallery/ links to direct links
Degallerify là gì?
Degallerify là một tiện ích mở rộng Chrome được phát triển bởi JonLuca, và tính năng chính của nó là "This extension will convert all instances of imgur.com/gallery/ links to direct links".
Ả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 Degallerify
Tải xuống các tệp mở rộng Degallerify 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
This extension replaces all links that point to imgur's gallery feature to direct links to the image You can view the source code here: https://github.com/jonluca/Degallerify
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jbloaejhknfcbegnkppflnkoechohdki |
URL Chính Thức | https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki |
Mô tả | This extension will convert all instances of imgur.com/gallery/ links to direct links |
Kích Thước Tệp | 110 KB |
Số Lần Cài Đặt | 96 |
Phiên Bản Hiện Tại | 2.4 |
Cập Nhật Lần Cuối | 2017-02-28 |
Ngày Phát Hành | 2017-02-27 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | JonLuca |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Degallerify", "description": "This extension will convert all instances of imgur.com\/gallery\/ links to direct links", "version": "2.4", "background": { "scripts": [ "js\/background.js", "js\/jquery-2.1.1.min.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js", "js\/jquery-2.1.1.min.js" ] } ], "icons": { "64": "images\/icon64.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "page_action": { "default_title": "Degallerify", "default_icon": "images\/icon.png" }, "homepage_url": "https:\/\/github.com\/jonluca\/Degallerify\/", "web_accessible_resources": [ "js\/jquery-2.1.1.min.js" ] } |