Wiki URL Shortener

The Wiki URL Shortener allows you to create short URLs for any page on projects hosted by the Wikimedia Foundation

Co to jest Wiki URL Shortener?

Wiki URL Shortener to rozszerzenie Chrome opracowane przez LeoMoon Studios, a jego główną funkcją jest „The Wiki URL Shortener allows you to create short URLs for any page on projects hosted by the Wikimedia Foundation”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Wiki URL Shortener

Pobierz pliki rozszerzeń Wiki 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

                        The Wiki URL Shortener allows you to create short URLs for any page on projects hosted by the Wikimedia Foundation, in order to reuse them elsewhere, for example on social networks or on wikis. The URL shortener only accepts links that are in WMF-based domains, so no external website can be linked.

Supported websites:
wikipedia.org
wikimedia.org
wikibooks.org
wikinews.org
wikisource.org
wikiversity.org
mediawiki.org
wikiquote.org
wiktionary.org
wikivoyage.org
wikidata.org
wikimediafoundation.org

Limits: 
50 short URLs every 2 minutes per IP for guest users.
10 short URLs every 2 minutes per IP for logged in users.                    

Podstawowe informacje o rozszerzeniu

Nazwa Wiki URL Shortener Wiki URL Shortener
ID oabidnaoocamhcmfgijbgpinnommcpeo
Oficjalny URL https://chromewebstore.google.com/detail/wiki-url-shortener/oabidnaoocamhcmfgijbgpinnommcpeo
Opis The Wiki URL Shortener allows you to create short URLs for any page on projects hosted by the Wikimedia Foundation
Rozmiar pliku 60.36 KB
Liczba instalacji 96
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2019-06-10
Data Publikacji 2019-06-04
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper LeoMoon Studios
Typ Płatności free
Strona Rozszerzenia https://leomoon.com/downloads/plugins/wiki-url-shortener-extension
Adres URL Strony Pomocy https://leomoon.com/downloads/plugins/wiki-url-shortener-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wiki URL Shortener",
    "description": "The Wiki URL Shortener allows you to create short URLs for any page on projects hosted by the Wikimedia Foundation",
    "version": "1.0.0",
    "author": "Arash Soleimani",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus",
        "storage",
        "",
        "activeTab",
        "*:\/\/*.wikipedia.org\/*",
        "*:\/\/*.wikimedia.org\/*",
        "*:\/\/*.wikibooks.org\/*",
        "*:\/\/*.wikinews.org\/*",
        "*:\/\/*.wikisource.org\/*",
        "*:\/\/*.wikiversity.org\/*",
        "*:\/\/*.mediawiki.org\/*",
        "*:\/\/*.wikiquote.org\/*",
        "*:\/\/*.wiktionary.org\/*",
        "*:\/\/*.wikivoyage.org\/*",
        "*:\/\/*.wikidata.org\/*",
        "*:\/\/*.wikimediafoundation.org\/*"
    ],
    "homepage_url": "https:\/\/leomoon.com\/downloads\/plugins\/wiki-url-shortener-extension"
}