WikiReveal: Link Talk Comments to Revisions
Links timestamps on a Wikipedia talk page to the version of the article at that time.
WikiReveal: Link Talk Comments to Revisionsคืออะไร?
WikiReveal: Link Talk Comments to Revisions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย feedback และคุณลักษณะหลักของมันคือ "Links timestamps on a Wikipedia talk page to the version of the article at that time."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WikiReveal: Link Talk Comments to Revisions
ดาวน์โหลดไฟล์ส่วนขยาย WikiReveal: Link Talk Comments to Revisions ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Comments on Wikipedia Talk pages make more sense when put into context of the version article at the time. This extension links each timestamped comment to the version of the article when that comment was made. This extension only fires when on Wikipedia Talk pages. Open sourced, check the link! Currently works only on English Wikipedia. Internationality coming soon.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WikiReveal: Link Talk Comments to Revisions |
ID | nlanliogjchihakmncmbhffimnnjjipp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wikireveal-link-talk-comm/nlanliogjchihakmncmbhffimnnjjipp |
คำอธิบาย | Links timestamps on a Wikipedia talk page to the version of the article at that time. |
ขนาดไฟล์ | 33.51 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2016-01-29 |
วันที่เผยแพร่ | 2016-01-28 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | feedback |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/hwangmoretime/wikireveal |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WikiReveal: Link Talk Comments to Revisions", "short_name": "WikiReveal", "version": "1.3", "description": "Links timestamps on a Wikipedia talk page to the version of the article at that time.", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "icon-19.png", "default_title": "Created links from talks to versions." }, "content_scripts": [ { "matches": [ "*:\/\/en.wikipedia.org\/wiki\/Talk:*" ], "js": [ "wikireveal_content_script.js" ] } ], "permissions": [ "declarativeContent" ], "icons": { "19": "icon-19.png", "38": "icon-38.png", "48": "icon-48.png", "128": "icon-128.png", "256": "icon-256.png" }, "manifest_version": 2 } |