VeniVidiWiki

I came, I saw, I knew. It redirects wikipedia request to wiki-zero. It also lets the in-page links on Wiki Zero pages work.

O que é VeniVidiWiki?

VeniVidiWiki é uma extensão do Chrome desenvolvida por berkantkepez, e sua principal característica é "I came, I saw, I knew. It redirects wikipedia request to wiki-zero. It also lets the in-page links on Wiki Zero pages work.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão VeniVidiWiki

Baixe arquivos de extensão VeniVidiWiki no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Geldim, gördüm, bildim. Bu eklenti Wikipedia'ya girerken sizi Wiki-Zero'ya yönlendirir. Aynı zamanda Wiki-Zero'daki sayfa içi bağlantıların (referans bağlantıları, onların dönüş bağlantıları ve içindekiler bağlantıları) beklendiği gibi çalışmasını sağlar. Yönlendirme özelliği eklentinin logosuna tıklayarak açılan pop-up sayfadaki tuş ile aktif ya da pasif hale getirilebilir.

I came, I saw, I knew. When you try to access wikipedia, this extension redirects you to wiki-zero. Additionally, it lets the anchor links (references, their backlinks and table-of-content links) on Wiki Zero pages work as expected. The redirection feature can be disabled via the switch on the pop-up menu, which is opened by clicking the logo.                    

Informações Básicas da Extensão

Nome VeniVidiWiki VeniVidiWiki
ID hamponpdlhceghibcaciddeoiidpmbaj
URL Oficial https://chrome.google.com/webstore/detail/venividiwiki/hamponpdlhceghibcaciddeoiidpmbaj
Descrição I came, I saw, I knew. It redirects wikipedia request to wiki-zero. It also lets the in-page links on Wiki Zero pages work.
Tamanho do Arquivo 12.2 KB
Contagem de Instalações 24
Versão Atual 1.0.8
Última Atualização 2019-01-29
Data de Publicação 2019-01-29
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor berkantkepez
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tbrknt/veniVidiWiki
URL da Página de Ajuda https://github.com/tbrknt/veniVidiWiki
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VeniVidiWiki",
    "short_name": "vvw",
    "description": "I came, I saw, I knew. It redirects wikipedia request to wiki-zero. It also lets the in-page links on Wiki Zero pages work.",
    "version": "1.0.8",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wiki-zero.net\/*",
                "*:\/\/*.wikizero.net\/*",
                "*:\/\/*.wiki-zero.co\/*",
                "*:\/\/*.wikizero.co\/*",
                "*:\/\/*.wiki-zero.com\/*",
                "*:\/\/*.wikizero.pro\/*",
                "*:\/\/*.wikizeroo.com\/*",
                "*:\/\/*.wikizeroo.net\/*",
                "*:\/\/*.wikizero.biz\/*"
            ],
            "js": [
                "fixAnchors.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "*:\/\/*.wikipedia.org\/*",
        "webRequestBlocking"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    }
}