Imgur Chrome Extension
This extension shows trending posts on Imgur when a new tab is open
Imgur Chrome Extensionคืออะไร?
Imgur Chrome Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gillesbertaux และคุณลักษณะหลักของมันคือ "This extension shows trending posts on Imgur when a new tab is open"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Imgur Chrome Extension
ดาวน์โหลดไฟล์ส่วนขยาย Imgur Chrome Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ajacnfghngjimlebbfafobbhofkmpnnp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp |
คำอธิบาย | This extension shows trending posts on Imgur when a new tab is open |
ขนาดไฟล์ | 668 KB |
จำนวนการติดตั้ง | 76 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2017-01-14 |
วันที่เผยแพร่ | 2017-01-14 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | gillesbertaux |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
เว็บไซต์ส่วนขยาย | https://github.com/gillesbertaux/imgur-chrome-extension |
URL หน้าช่วยเหลือ | https://github.com/gillesbertaux/imgur-chrome-extension |
ภาษาที่รองรับ | 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" ] } |