Javadoc Redirector
Redirects you automatically to the Java 8 Javadoc.
什麼是Javadoc Redirector?
Javadoc Redirector是由z3ntu開發的Chrome擴展程式,該擴展的主要功能是“Redirects you automatically to the Java 8 Javadoc.”。
擴展截圖
下載Javadoc Redirector擴展crx文件
下載Javadoc Redirector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Are you tired of getting Javadoc search results from Java 7? Not anymore! Because 'Javadoc Redirector' automatically redirects you from those Java 7 pages to Java 8 ones! A simple extension that just redirects you from e.g. https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html to the Java 8 equivalent: https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html as different search machines still show Java 7 as first result.
擴展基本資訊
名稱 | Javadoc Redirector |
ID | pkpckmephcfffdfjemgnekclglhpkcom |
官方網址 | https://chromewebstore.google.com/detail/javadoc-redirector/pkpckmephcfffdfjemgnekclglhpkcom |
簡介 | Redirects you automatically to the Java 8 Javadoc. |
檔案大小 | 26.16 KB |
安裝次數 | 369 |
目前版本 | 1.2 |
更新時間 | 2022-09-10 |
上架時間 | 2016-09-13 |
評分 | 4.67/5 共 6 次評分 |
開發者 | z3ntu |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/z3ntu/JavadocRedirector |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Javadoc Redirector", "description": "Redirects you automatically to the Java 8 Javadoc.", "version": "1.2", "author": "z3ntu", "homepage_url": "https:\/\/z3ntu.github.io", "content_scripts": [ { "js": [ "js\/replace.js" ], "matches": [ "*:\/\/docs.oracle.com\/javase\/*\/docs\/api\/*" ], "run_at": "document_start" } ], "permissions": [ "*:\/\/docs.oracle.com\/javase\/*" ], "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" } } |