Javadoc Redirector
Redirects you automatically to the Java 8 Javadoc.
Qu'est-ce que Javadoc Redirector ?
Javadoc Redirector est une extension Chrome développée par z3ntu, et sa fonction principale est "Redirects you automatically to the Java 8 Javadoc.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Javadoc Redirector
Téléchargez les fichiers d'extension Javadoc Redirector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Javadoc Redirector |
ID | pkpckmephcfffdfjemgnekclglhpkcom |
URL Officiel | https://chromewebstore.google.com/detail/javadoc-redirector/pkpckmephcfffdfjemgnekclglhpkcom |
Description | Redirects you automatically to the Java 8 Javadoc. |
Taille du Fichier | 26.16 KB |
Nombre d'Installations | 369 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2022-09-10 |
Date de Publication | 2016-09-13 |
Évaluation | 4.67/5 Total 6 Évaluations |
Développeur | z3ntu |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/z3ntu/JavadocRedirector |
Langues Prises en Charge | 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" } } |