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은(는) feedback에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Links timestamps on a Wikipedia talk page to the version of the article at that time."입니다.
확장 프로그램 스크린샷
WikiReveal: Link Talk Comments to Revisions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |