Google News No Top Stories
Removes Top Stories from Google News
Google News No Top Storiesคืออะไร?
Google News No Top Stories เป็นส่วนขยายของ Chrome ที่พัฒนาโดย robnield และคุณลักษณะหลักของมันคือ "Removes Top Stories from Google News"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google News No Top Stories
ดาวน์โหลดไฟล์ส่วนขยาย Google News No Top Stories ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple extension to remove Google New's Top Stories section.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | oikdcblndphhmpmillphjmdpgkghcolc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/google-news-no-top-storie/oikdcblndphhmpmillphjmdpgkghcolc |
คำอธิบาย | Removes Top Stories from Google News |
ขนาดไฟล์ | 35.21 KB |
จำนวนการติดตั้ง | 32 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2016-08-17 |
วันที่เผยแพร่ | 2016-08-17 |
คะแนน | 2.63/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | robnield |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google News No Top Stories", "description": "Removes Top Stories from Google News", "version": "1.1", "page_action": { "default_icon": "icon.png", "default_title": "Remove Google News Top Stories" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/news.google.com\/*", "http:\/\/news.google.com\/*" ], "js": [ "google_cs.js", "jquery.min.js" ], "css": [ "google_cs.css" ] } ], "permissions": [ "tabs", "http:\/\/news.google.com\/*", "https:\/\/news.google.com\/*" ] } |