Rewrite IETF ID URLs to Tools or Datatracker
Rewrite IETF ID URLs (www.ietf.org/id/foo-00.txt) to the Tools (or Datatracker) versions.
Qu'est-ce que Rewrite IETF ID URLs to Tools or Datatracker ?
Rewrite IETF ID URLs to Tools or Datatracker est une extension Chrome développée par Warren Kumari, et sa fonction principale est "Rewrite IETF ID URLs (www.ietf.org/id/foo-00.txt) to the Tools (or Datatracker) versions.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Rewrite IETF ID URLs to Tools or Datatracker
Téléchargez les fichiers d'extension Rewrite IETF ID URLs to Tools or Datatracker 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
This will rewrite the "official" IETF Internet Draft URLs (http://www.ietf.org/id/foo-42.txt) to the Tools (http://tools.ietf.org/html/foo-42) or Datatracker (http://datatracker.ietf.org/docs/foo) versions instead. This uses Google Analytics to track how many folk install / use the extension (so I know if it is worth putting time into updating it, etc. If this offends you, let me know and I'll send you a version without the tracking stuff). Version log: 1.0.4.0: -- Added checkbox to redirect to SSL sites (enabled by default) -- Code cleanup. 1.0.3.1: -- Fixed option saving issue (Content-Security-Policy was not allowing inline event. Moved options code to its own file (options.js)) -- Updated to use Version 2 manifests. -- Update with patch from Barry Leiba to handle https and "rfc-editor.org"
Informations de Base sur l'Extension
Nom | |
ID | aiccdpabeagpjcebilebhlifplfkinao |
URL Officiel | https://chromewebstore.google.com/detail/rewrite-ietf-id-urls-to-t/aiccdpabeagpjcebilebhlifplfkinao |
Description | Rewrite IETF ID URLs (www.ietf.org/id/foo-00.txt) to the Tools (or Datatracker) versions. |
Taille du Fichier | 55.78 KB |
Nombre d'Installations | 130 |
Version Actuelle | 1.0.4.0 |
Dernière Mise à Jour | 2013-12-06 |
Date de Publication | 2013-12-06 |
Évaluation | 4.75/5 Total 4 Évaluations |
Développeur | Warren Kumari |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rewrite IETF ID URLs to Tools or Datatracker", "short_name": "IETF URL Rewriter", "version": "1.0.4.0", "description": "Rewrite IETF ID URLs (www.ietf.org\/id\/foo-00.txt) to the Tools (or Datatracker) versions.", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "page": "background.html" }, "options_page": "options.html", "page_action": { "default_icon": "icon-19.png", "default_title": "Redirected to tools site!" }, "permissions": [ "tabs" ], "icons": { "48": "icon-48.png", "128": "icon-128.png" } } |