WikiPop

Display view data on all Wikipedia articles

什么是WikiPop?

WikiPop是由Brian Faure开发的Chrome扩展程序,该扩展的主要功能是“Display view data on all Wikipedia articles”。

扩展截图

screenshot
screenshot
screenshot

下载WikiPop扩展crx文件

下载WikiPop扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Displays view count information on all Wikipedia articles. When the user navigates to a Wikipedia article, an embedded plot will open on the right side of the page showing the volume, 12-day moving average, and 26-day moving average of views for the past several months. An average view/day item is also calculated and presented to the user. All formatting and styling is as close to that found natively on Wikipedia as possible.

When viewing an article pertaining to a movie or TV show, data will be scraped from IMDb and added to the frame, such as rating, volume, MPAA information and more. Similarly, data scraped from Goodreads is presented when viewing an article for a novel or series. When viewing an article for a cryptocurrency the current ticker price (along with some extra data) will be scraped from CoinMarketCap.

All trending articles (the top 1,000 viewed) from the prior day can be displayed via the button embedded on the lefthand side of the page, when on Wikipedia.

The popularity information pane can be hidden using the 'Hide Frame' button and re-displayed using 'Expand Frame'.

All data is fetched on-the-fly from the Wikimedia API. View data going back several years can be downloaded using the download button located within the frame.

(1.0.5.0) Added Peak interest dates linking to Google date range searches.

(1.0.3.1) Improved parsing of CoinMarketCap entries, improved tv show parsing.

(1.0.2.0) Added support for CoinMarketCap scraping (activates when on an article for a cryptocurrency).

(1.0.1.1) Added support for Goodreads scraping (activates when on article for novel or series), added minimize/maximize buttons in top right of frame.

(1.0.0.0) Greatly reduced package size (~100MB->800KB), IMDb information is now parsed via the search functionality built into the IMDb website rather than using an article name -> IMDb ID to construct dynamic URLs, dynamic frame resizing, replaced download string with smaller button.

(0.0.1.3) Fixed bug that only showed up on Windows, removed extra large files from package (size down from 200MB to 17MB).

(0.0.1.2) View data seen in plot can now be downloaded as a CSV file using link at the bottom of the Frame (when on a Wikipedia article). An 'interest index' heuristic is now visible below the 'Views/day', equal to the percent of article views coming in on weekends (over the past several years).

(0.0.1.0) IMDB logo is now clickable, more accurate ratings (movie/tv shows are more frequently matched to their correct counterparts on IMDB, turns out there are a lot more "Shawshank Redemption"s out there than you'd think).

(0.0.0.5) IMDB data is now fetched from the website dynamically, rather than being read from a file.

(0.0.0.4) When visiting articles pertaining to films or TV shows, the current IMDB rating will also be displayed in the info box.

(0.0.0.3) Minor bug fix (extension was disabled by default).

(0.0.0.2) Added options page, can disable extension using this. Changed moving averages from 12 & 26 to 7 & 50.

Contributors: Nathan Kjer, Wayne Sun, Luke Wielgus  

All code can be viewed here: https://github.com/bfaure/WikiPopularity                    

扩展基本信息

名称 WikiPop WikiPop
ID mkdacoblmknahnamcloolpfdijekmggm
官方URL https://chrome.google.com/webstore/detail/wikipop/mkdacoblmknahnamcloolpfdijekmggm
简介 Display view data on all Wikipedia articles
文件大小 797 KB
安装次数 58
当前版本 1.0.5.0
更新时间 2020-05-20
上架时间 2020-05-20
评分 5.00/5 共16次评分
开发者 Brian Faure
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://docs.google.com/document/d/1bzGxFItr3W1iXxp6IFO74G9sotGSL7zPg8FJQgDWjco/edit?usp=sharing
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WikiPop",
    "version": "1.0.5.0",
    "manifest_version": 2,
    "web_accessible_resources": [
        "popup\/popup_box.htm",
        "popup\/plotly-latest.min.js",
        "popup\/popular_articles.html",
        "popup\/popular_articles_generator.js",
        "options.html",
        "icons\/download.png",
        "icons\/maximize.png",
        "icons\/minimize.png"
    ],
    "description": "Display view data on all Wikipedia articles",
    "homepage_url": "http:\/\/bfaure.us",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": "icons\/icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "popup\/popup.js"
            ],
            "css": [
                "icons\/logo.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "background",
        "",
        "storage",
        "downloads"
    ]
}