WikiPop

Display view data on all Wikipedia articles

¿Qué es WikiPop?

WikiPop es una extensión de Chrome desarrollada por Brian Faure, y su función principal es "Display view data on all Wikipedia articles".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión WikiPop

Descarga archivos de extensión WikiPop en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre WikiPop WikiPop
ID mkdacoblmknahnamcloolpfdijekmggm
URL Oficial https://chrome.google.com/webstore/detail/wikipop/mkdacoblmknahnamcloolpfdijekmggm
Descripción Display view data on all Wikipedia articles
Tamaño del Archivo 797 KB
Cantidad de Instalaciones 58
Versión Actual 1.0.5.0
Última Actualización 2020-05-20
Fecha de Publicación 2020-05-20
Calificación 5.00/5 Total de 16 Calificaciones
Desarrollador Brian Faure
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://docs.google.com/document/d/1bzGxFItr3W1iXxp6IFO74G9sotGSL7zPg8FJQgDWjco/edit?usp=sharing
Idiomas Soportados 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"
    ]
}