WikiReveal: Link Talk Comments to Revisions

Links timestamps on a Wikipedia talk page to the version of the article at that time.

What is WikiReveal: Link Talk Comments to Revisions?

WikiReveal: Link Talk Comments to Revisions is a Chrome extension developed by feedback, and its main feature is "Links timestamps on a Wikipedia talk page to the version of the article at that time.".

Extension Screenshots

screenshot

Download WikiReveal: Link Talk Comments to Revisions Extension CRX File

Download WikiReveal: Link Talk Comments to Revisions extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name WikiReveal: Link Talk Comments to Revisions WikiReveal: Link Talk Comments to Revisions
ID nlanliogjchihakmncmbhffimnnjjipp
Official URL https://chromewebstore.google.com/detail/wikireveal-link-talk-comm/nlanliogjchihakmncmbhffimnnjjipp
Description Links timestamps on a Wikipedia talk page to the version of the article at that time.
File Size 33.51 KB
Installation Count 26
Current Version 1.3
Last Updated 2016-01-29
Publish Date 2016-01-28
Rating 5.00/5 Total 1 Ratings
Developer feedback
Payment Type free
Extension Website https://github.com/hwangmoretime/wikireveal
Supported Languages 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
}