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.”。

擴展截圖

screenshot

下載WikiReveal: Link Talk Comments to Revisions擴展crx文件

下載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 WikiReveal: Link Talk Comments to Revisions
ID nlanliogjchihakmncmbhffimnnjjipp
官方網址 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
}