Seenthis
•
 
Identifiants personnels
  • [mot de passe oublié ?]

 
  • #f
  • #fi
  • #fir
  • #fire
RSS: #firebug

#firebug

  • @nicod_
    nicod_ @nicod_ 26/10/2017

    Saying Goodbye to Firebug ★ Mozilla Hacks – the Web developer blog
    ▻https://hacks.mozilla.org/2017/10/saying-goodbye-to-firebug

    https://hacks.mozilla.org/files/2017/10/firebug-large.png

    The story of Firefox and Firebug is synonymous with the rise of the web.

    So long Firebug, and thanx for all the fish :)

    #mozilla #firebug #webdev

    nicod_ @nicod_
    Écrire un commentaire
  • @nicod_
    nicod_ @nicod_ 6/12/2016

    Hommage à Firebug – Medium
    ▻https://medium.com/@mathrobin/hommage-%C3%A0-firebug-f9c86d0a7048

    So long, #firebug, and thanks for all the fish!

    nicod_ @nicod_
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 9/08/2016

    Storage Inspector - Firefox Developer Tools | MDN
    ▻https://developer.mozilla.org/en-US/docs/Tools/Storage_Inspector

    The Storage Inspector enables you to inspect various types of storage that a web page can use. Currently it can be used to inspect the following storage types:

    – Cache Storage (new in Firefox 47) - any DOM caches created using the Cache API.
    – Cookies - All the cookies created by the page or any iframes inside of the page. Cookies created as a part of response of network calls are also listed, but only for calls that happened while the tool is open.
    – Local Storage - All local storage items created by the page or any iframes inside the page.
    – Session Storage - All session storage items created by the page or any iframes inside the page.
    – IndexedDB - All IndexedDB databases created by the page or any iframes inside the page, their Object Stores and the items stored in these Object Stores.

    For the time being, the Storage Inspector only gives you a read-only view of storage. But we’re working to let you edit storage contents in future releases.

    #cookie #storage #local_storage #inspector #webdev #firebug #firefox_devtools #mdn

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 9/08/2016

    Using the Web Animations API - Web APIs | MDN
    ▻https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API/Using_the_Web_Animations_API

    The Web Animations API lets us construct animations and control their playback with JavaScript. This article will start you off in the right direction with fun demos and tutorials featuring Alice in Wonderland.
    The Web Animations API opens the browser’s animation engine to developers and manipulation by JavaScript. This API was designed to underlie implementations of both CSS Animations and CSS Transitions, and leaves the door open to future animation effects. It is one of the most performant ways to animate on the Web where supported, letting the browser make its own internal optimizations without hacks, coercion, or Window.requestAnimationFrame().

    With the Web Animations API, we can move interactive animations from stylesheets to JavaScript, separating presentation from behavior. We no longer need to rely on DOM-heavy techniques like writing CSS properties and scoping classes onto elements to control playback direction. And unlike pure, declarative CSS, JavaScript also lets us dynamically set values from properties to durations. For building custom animation libraries and creating interactive animations, the Web Animations API might be the perfect tool for the job.

    Pour la mise au point/débogage de ces animations, la version de firebug fusionnée avec Firefox DevTools (à partir de Firefox 49, cf ▻https://blog.getfirebug.com/2016/06/07/unifying-firebug-firefox-devtools) propose « Animation Inspector », une console spécifique : cf ▻https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector/How_to/Work_with_animations

    Pour aller plus loin : ▻https://hacks.mozilla.org/2016/08/animating-like-you-just-dont-care-with-element-animate

    Pour la compatibilité avec les navigateurs ne supportant pas l’API Web Animations (Internet Explorer et Safari actuellement) : ▻https://github.com/web-animations/web-animations-js

    #web_animation #mdn #API #firebug #firefox_devtools

    • #animation
    • #API
    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @bloginfo
    bloginfo @bloginfo CC BY-NC-ND 25/06/2016

    Tester la vitesse de chargement des pages de vos sites Web
    ▻http://www.dsfc.net/internet/referencement-internet/test-vitesse-chargement-pages-sites-web

    http://www.dsfc.net/wp-content/uploads/2013/04/pingdom-website-speed-test-dsfc-net.jpg

    De nombreux outils de mesure de la vitesse de chargement des pages des sites Web existent. Citons, entre autres, #Pagespeed, #Yslow, #Pingdom_Tools ou #GTmetrix.

    #Référencement #Consultant_SEO #Firebug #Firefox #Formateur_Apache #Formateur_LAMP #Formateur_Référencement_naturel #Formateur_SEO #Formateur_Web_Analytics #Formation_Apache #Formation_LAMP #Formation_Référencement_naturel #Référencement_naturel #SEO #Web_Analytics

    bloginfo @bloginfo CC BY-NC-ND
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 3/06/2015
    1
    @habbon
    1

    #jquery-inlog
    ▻http://prinzhorn.github.io/jquery-inlog

    jQuery-inlog allows you to easily debug your jQuery code. See exactly what you pass to functions, what they return and in which context (this-value) they were executed. No more alert($obj.length) to see if your selector worked. No more pain when chaining many calls and figuring out which one fails Include jquery.inlog.js after jQuery core and enable it by calling $l(true) or $l(options).

    #débogage #javascript #jQuery-inlog #firebug

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @james
    James @james PUBLIC DOMAIN 24/10/2013

    FirePHP - Firebug Extension for AJAX Development
    ▻http://www.firephp.org

    FirePHP enables you to #log to your #Firebug Console using a simple #PHP method call.

    All data is sent via response headers and will not interfere with the content on your page.

    FirePHP is ideally suited for AJAX development where clean JSON and XML responses are required.

    James @james PUBLIC DOMAIN
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 29/07/2011

    #Firebug 1.8 : #console.timeStamp()
    ►http://www.softwareishard.com/blog/firebug/firebug-1-8-console-timestamp

    Firebug 1.8b3 introduces a new #API that can be used to create time-stamps during #Javascript #execution and compare them together with #HTTP traffic #timing on the timeline in the Net panel: console.timeStamp();

    This feature is useful in cases where the developer needs to know when particular piece of Javascript code is executed relatively to the HTTP request made by web page. Especially in cases when Javascript is loaded through dynamically appended <script> tags or through XHR and evaluated using eval().

    #dev

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @dolmen
    dolmen @dolmen CC BY-SA 7/04/2011

    Le « hall of shame » des extensions Firefox : un classement selon leur impact sur le temps de démarrage.
    ►https://addons.mozilla.org/fr/firefox/performance

    dolmen @dolmen CC BY-SA
    • @fil
      Fil @fil 7/04/2011

      ah dommage pour #firebug ; perso mon problème avec #firefox c’est plutôt qu’il se met à ramer au bout d’un moment, et qu’il faut alors le redémarrer si on veut pouvoir continuer à utiliser l’ordi

      Fil @fil
    • @akilo
      akilo @akilo 7/04/2011

      donc je ne suis pas seul au monde !
      il y a un vrai problème avec #firefox depuis quelque temps déjà et je reste avec pour des addons comme #firebug

      akilo @akilo
    • @monolecte
      M😷N😷LECTE 🤬 @monolecte CC BY-NC-SA 7/04/2011

      Y a des migrations vers Chrome à cause de ça. j’ai aussi changé de bécane parce que l’ancienne ne parvenait plus à faire face à la montée en charge de la plupart de mes logiciels, dont Firefox en premier. Le truc, c’est que certains de mes addons les plus utiles ne sont pas sous Chrome

      M😷N😷LECTE 🤬 @monolecte CC BY-NC-SA
    • @dolmen
      dolmen @dolmen CC BY-SA 8/04/2011

      Chrome sans extension démarre forcément plus rapidement que Firefox avec 2 ou 3 !
      Sur mon netbook j’avais abandonné #Firefox pour #Chrome pour plus de rapidité et plus d’espace sur l’écran. J’y suis revenu avec #Firefox-4

      dolmen @dolmen CC BY-SA
    Écrire un commentaire
  • @fil
    Fil @fil 24/03/2011

    #Firebug 1.7 New Features ✩ Mozilla Hacks
    ►http://hacks.mozilla.org/2011/03/firebug-1-7-new-features

    http://hacks.mozilla.org/wp-content/uploads/2011/03/sessionStorage.png

    #firefox

    Fil @fil
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 6/12/2010

    h5o - Project Hosting on Google Code
    ►http://code.google.com/p/h5o
    “The current (Nov, 2009) HTML5 draft defines quite a precise algorithm, for producing an outline for HTML documents. h5o is an implementation of the algorithm in JavaScript.”
    #HTML5 #outline #extension #Firefox #Firebug #Opera #Chrome #bookmarklet #dev #web

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 22/09/2010

    What does (Aborted) mean in HttpWatch? - HttpWatch Blog
    ►http://blog.httpwatch.com/2008/01/28/what-does-aborted-mean-in-httpwatch
    #trace #réseau #Firebug #Aborted #ressource #dev #web #performance #clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 1/04/2010

    Firefocus : : Modules pour Firefox
    ►https://addons.mozilla.org/fr/firefox/addon/49662?collection_uuid=38e04bf2-accc-dcbb-37b8-b30a96dc0fa1

    « Track Page Focus in Firebug »

    #firebug #Firefox #extension #dev #web #focus #accessibilité #test

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 1/04/2010

    Typecut :: Modules pour Firefox
    ►https://addons.mozilla.org/fr/firefox/addon/61269?collection_uuid=38e04bf2-accc-dcbb-37b8-b30a96dc0fa1

    “The Firebug plugin that extracts embedded (Typekit) font resources from websites and allows their separate download.”

    #font-face #fonte #police #dev #web #firebug #clevermarks #extension #Firefox #Typekit

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 1/04/2010

    FireFontFamily :: Modules pour Firefox
    ►https://addons.mozilla.org/fr/firefox/addon/111672

    “Highlight the rendered font-family in Firebug”

    #font-face #fonte #police #dev #web #firebug #Firefox #extension #clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 17/09/2009

    Firebug Lite
    ►http://getfirebug.com/lite.html

    #javascript #firebug #ie #tools #debug #webdev

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 5/06/2009

    Page Speed Home
    ►http://code.google.com/intl/fr/speed/page-speed

    Page Speed is an open-source Firefox/Firebug Add-on. Webmasters and web developers can use Page Speed to evaluate the performance of their web pages and to get suggestions on how to improve them.

    #test #vitesse #chargement #page #web #dev #optimisation #performance #Firefox #extension #firebug #clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 18/02/2009

    FireScope - HTML Brains at your Fingertips
    ►http://tools.sitepoint.com/firescope

    FireScope is a Firefox add-on that integrates with Firebug, to extend it with reference material for HTML and CSS.

    #reference #webdev #css #webdesign #firebug #tools #firefox

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 7/01/2009

    Clever Title Here » Article » Announcing jQuery.Firebug
    ►http://jasonkarns.com/blog/?p=5

    #jQuery #Firebug #log #debug #javascript #plugin #dev #clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 24/06/2008

    Jiffy Firefox Extension - Documentation
    ►http://billwscott.com/jiffyext

    The Jiffy Firefox Extension adds an additional panel to Firebug that provides a visual view of the Javascript time measurements captured by Jiffy-Web

    #performance #javascript #firebug #jiffy #firefox #extension #groupe:clever-age

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 15/06/2008

    YSlow for Firebug
    ►http://developer.yahoo.com/yslow

    YSlow analyzes web pages and tells you why they’re slow based on the rules for high performance web sites. YSlow is a Firefox add-on integrated with the popular Firebug web development tool. PAS ENCORE COMPATIBLE FF3

    #ajax #debug #css #firebug #performance #firefox #web #webdev #yahoo

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 6/03/2008

    Software is hard | Firecookie
    ►http://www.softwareishard.com/blog/?page_id=5

    Firecookie is a an extension for Firebug that makes possible to view and manage cookies in your browser. Apart from all the other cookie managers and viewers available as Firefox extensions, this one is made as an extension for Firebug, so web developer h

    #cookie #dev #webdev #groupe:clever-age #firebug #firefox #extension #debug

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 6/03/2008

    Software is hard | Firecookie
    ►http://www.softwareishard.com/blog/?page_id=5

    #dev #plugins #web #firebug #Extension #cookies #debugging #debug

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 23/04/2007

    Ajaxian » Fireclipse: Debug from FF straight into Eclipse
    ►http://ajaxian.com/archives/fireclipse-debug-from-ff-straight-into-eclipse

    John J. Barton has released a new open source framework named Fireclipse that enables nice coupling of Firefox and Eclipse for debugging purposes, working on top of Firebug.

    #firefox #javascript #debug #eclipse #firebug #dev #groupe:clever-age #clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire

Thèmes liés

  • #firefox
  • #dev
  • #extension
  • #web
  • #clevermarks
  • #debug
  • #javascript
  • #webdev
  • #performance
  • #groupe
  • #test
  • #font-face
  • #fonte
  • #police
  • #css
  • #tools
  • technology: api
  • #chrome
  • programminglanguage: javascript
  • #cookie
  • #log
  • #jiffy
  • #ressource
  • #aborted
  • #réseau
  • #trace
  • #plugins
  • #bookmarklet
  • #cookies
  • industryterm: performance web sites
  • #api
  • #execution
  • #http
  • #timing
  • #debugging
  • technology: http
  • #eclipse
  • #html5
  • #outline
  • industryterm: web development tool