Degallerify
This extension will convert all instances of imgur.com/gallery/ links to direct links
Degallerifyคืออะไร?
Degallerify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JonLuca และคุณลักษณะหลักของมันคือ "This extension will convert all instances of imgur.com/gallery/ links to direct links"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Degallerify
ดาวน์โหลดไฟล์ส่วนขยาย Degallerify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jbloaejhknfcbegnkppflnkoechohdki |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/degallerify/jbloaejhknfcbegnkppflnkoechohdki |
คำอธิบาย | This extension will convert all instances of imgur.com/gallery/ links to direct links |
ขนาดไฟล์ | 110 KB |
จำนวนการติดตั้ง | 96 |
เวอร์ชันปัจจุบัน | 2.4 |
อัปเดตครั้งล่าสุด | 2017-02-28 |
วันที่เผยแพร่ | 2017-02-27 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | JonLuca |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
ภาษาที่รองรับ | 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" ] } |