Remove Citations
Remove the citations found on Wikipedia pages
Remove Citationsคืออะไร?
Remove Citations เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mileung.com และคุณลักษณะหลักของมันคือ "Remove the citations found on Wikipedia pages"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove Citations
ดาวน์โหลดไฟล์ส่วนขยาย Remove Citations ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This simple Chrome Extension removes the citations found on Wikipedia articles.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Remove Citations |
ID | ojmmohmckbjmbpjpdohkfmhnkfedbofp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp |
คำอธิบาย | Remove the citations found on Wikipedia pages |
ขนาดไฟล์ | 20.74 KB |
จำนวนการติดตั้ง | 1,098 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2018-01-08 |
วันที่เผยแพร่ | 2018-01-08 |
คะแนน | 4.33/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | https://mileung.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://mileung.com/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Citations", "description": "Remove the citations found on Wikipedia pages", "version": "1.3", "background": { "scripts": [ "src\/background.js" ] }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.wikipedia.org\/*" ], "js": [ "src\/content.js" ] } ], "permissions": [ "tabs", "storage", "https:\/\/*.wikipedia.org\/*", "https:\/\/ajax.googleapis.com\/" ] } |