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.
VeniVidiWiki란 무엇입니까?
VeniVidiWiki은(는) berkantkepez에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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."입니다.
확장 프로그램 스크린샷
VeniVidiWiki 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | hamponpdlhceghibcaciddeoiidpmbaj |
공식 URL | https://chrome.google.com/webstore/detail/venividiwiki/hamponpdlhceghibcaciddeoiidpmbaj |
설명 | 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. |
파일 크기 | 12.2 KB |
설치 횟수 | 24 |
현재 버전 | 1.0.8 |
최근 업데이트 | 2019-01-29 |
출시 날짜 | 2019-01-29 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | berkantkepez |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tbrknt/veniVidiWiki |
도움말 페이지 URL | https://github.com/tbrknt/veniVidiWiki |
지원되는 언어 | 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" } } |