Wikipedia URL Shortener

Make Wikipedia URL to be shorten by using Page ID.

Co to jest Wikipedia URL Shortener?

Wikipedia URL Shortener to rozszerzenie Chrome opracowane przez ryoya.kawai, a jego główną funkcją jest „Make Wikipedia URL to be shorten by using Page ID.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Wikipedia URL Shortener

Pobierz pliki rozszerzeń Wikipedia URL Shortener w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension convert Wikipedia long URL to short URL by using its content ID.                    

Podstawowe informacje o rozszerzeniu

Nazwa Wikipedia URL Shortener Wikipedia URL Shortener
ID ioekneldioljahdoiddhikknahbbkhan
Oficjalny URL https://chromewebstore.google.com/detail/wikipedia-url-shortener/ioekneldioljahdoiddhikknahbbkhan
Opis Make Wikipedia URL to be shorten by using Page ID.
Rozmiar pliku 32.15 KB
Liczba instalacji 95
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2018-06-22
Data Publikacji 2018-06-21
Ocena 2.00/5 Łącznie 1 Oceny
Deweloper ryoya.kawai
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia URL Shortener",
    "version": "1.0.3",
    "description": "Make Wikipedia URL to be shorten by using Page ID.",
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/wikipediaurlshortener16.png",
            "32": "images\/wikipediaurlshortener32.png",
            "48": "images\/wikipediaurlshortener48.png",
            "128": "images\/wikipediaurlshortener128.png"
        }
    },
    "icons": {
        "16": "images\/wikipediaurlshortener16.png",
        "32": "images\/wikipediaurlshortener32.png",
        "48": "images\/wikipediaurlshortener48.png",
        "128": "images\/wikipediaurlshortener128.png"
    },
    "manifest_version": 2
}