1. Nachrichten
  2. Forum
    1. Unerledigte Themen
    2. Forenregeln
  3. Spenden
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. camp-firefox.de
  2. mr.b.

Beiträge von mr.b.

  • Link in neuem Tab (strg) fuktioniert oft nicht.

    • mr.b.
    • 27. Januar 2022 um 19:19

    Hallo,

    es passiert relativ oft, dass bei Klick auf einen Link - in diesem Fall auf ein Video - bei gedrückter Strg-Taste kein neuer Tab geöffnet wird, Ich muss dann den umständlichen Weg über Rechtsklick gehen.

    Hängt dieses Verhalten von der Webseite ab, oder ist ein FF-Problem?

    Beispiel: ich klicke auf diese Seite https://www.focus.de/politik/deutsc…d_44259868.html

    auf das Video.

  • user.js wird nicht mehr ausgeführt

    • mr.b.
    • 25. Januar 2022 um 15:15

    Danke. Das stand da wirklich so. Jetzt aber nicht mehr und das Problem ist behoben. :) :thumbup:

  • user.js wird nicht mehr ausgeführt

    • mr.b.
    • 24. Januar 2022 um 23:17

    Danke!

    Beispiele:

    user_pref("browser.tabs.loadDivertedInBackground", true),

    user_pref("media.video_stats.enabled", false);

    user_pref("media.autoplay.default", 2),

    user_pref("browser.tabs.loadBookmarksInBackground", true);

    user_pref("layout.css.devPixelsPerPx" , 1.2) ;

    Das Merkwürdige: einige sind vorhanden, haben aber falsche Werte (false statt true).

  • user.js wird nicht mehr ausgeführt

    • mr.b.
    • 24. Januar 2022 um 22:41

    Hallo,

    Ich habe etwa 10 Einträge in der user.js. Einige davon (vielleicht auch alle) werden nicht nach Neustart ausgeführt.

    Was könnte die Ursache sein?

    Außerdem habe ich festgestellt, dass in der prefs.js bei weitem nicht alle Einträge vorhanden sind, die in "about:config" erscheinen.

    Wie kann man die fehlenden Einträge ändern, nur über about:config?

  • Multirow (in css) zu große Abstände, Neustartskripte funtionieren nicht mehr

    • mr.b.
    • 23. Januar 2022 um 19:29

    MultiRow läuft wieder im neuen Profil.

    Nochmals Danke!

  • Multirow (in css) zu große Abstände, Neustartskripte funtionieren nicht mehr

    • mr.b.
    • 23. Januar 2022 um 19:02

    Danke,

    Restart-Problem ist gelöst. Werde mal ein neues Profil erstellen, mal sehen, ob dort die Ursache für das Multirow sein könnte.

  • Multirow (in css) zu große Abstände, Neustartskripte funtionieren nicht mehr

    • mr.b.
    • 23. Januar 2022 um 01:26

    Hallo,

    die Multi-row-Modifikation (in css), hat seit Kurzem zu große vertikale Abstände. Was muss geändert werden?

    CSS
    /* Tableiste mehrreihig oben */
    @-moz-document url(chrome://browser/content/browser.xhtml) {
    
    [tabsintitlebar="true"][sizemode="maximized"] #navigator-toolbox {
    padding-top: 10px !important;
    }
    
    #titlebar,#tabbrowser-tabs {
    appearance: none !important;
    }
    
    [tabsintitlebar="true"] #TabsToolbar > .titlebar-buttonbox-container,
    #main-window[inFullscreen="true"] #window-controls {
    display: block;
    }
    
    /* Mehrreihige Tableiste, Anzahl der angezeigten Tabreihen = 3 Zeilen, weitere per Scrollbar */
    box[class="scrollbox-clip"][orient="horizontal"],
    tabs > arrowscrollbox { display: block; }
    scrollbox[part][orient="horizontal"] {
    display: flex;
    flex-wrap: wrap;
    max-height: calc(var(--tab-min-height) * 5); /* Anzahl der angezeigten Tabreihen = 3 Zeilen */
    overflow-x: hidden;
    overflow-y: auto;
    }
    
    #tabbrowser-arrowscrollbox {
      margin-top: -1px !important;
      margin-bottom: -20px !important;
    }
    
    :root {
        --tab-min-height: 20px !important; 
    }
    
        
        /* Feste Breite der einzelnen Tabs wenn gewünscht, sonst entfernen bzw. verbreitern */
    tabs tab[fadein]:not([pinned]) {
    min-width: 115px !important;/* Minimale Tabbreite 76px */
    max-width: 115px !important;/* Maximale Tabbreite 225px */
    }
    
    /* Tab schließen Icon nur im aktiven Tab */
    
    .tab-close-button {
    display:none!important;
    }
    
    .tabbrowser-tab[selected="true"] .tab-close-button {
    display: block !important; 
    }
    
    tabs tab[fadein]:not([pinned]) {
    flex-grow: 1;
    }
    
    /* Buttons/Zwischenräume Ausblenden */
    hbox.titlebar-spacer,
    #alltabs-button,tabs tab:not([fadein]), 
    [class="scrollbutton-up"],
    [class="scrollbutton-up"] + spacer,
    scrollbox[part][orient="horizontal"] + spacer,
    [class="scrollbutton-down"] { 
        display: none; 
    }
    /* tabs tab {
        border-left: solid 1px hsla(0,0%,50%,.5);
        border-right: solid 1px hsla(0,0%,50%,.5);
    } */
    tabs tab:after,tabs tab:before { display: none;}
    
    /* #TabsToolbar:not(:-moz-lwtheme){ 
        color: black !important;
    } */
    #TabsToolbar > .titlebar-buttonbox-container {
        display: none !important;
    }    
       
    /* -----------------------------*/
    /* Tab: Optische Anpassungen    */
    /* -----------------------------*/
    #tabbrowser-tabs :not([fokus]){
        opacity: 6 !important;
    }
    /* Schriftart/Schriftgröße ändern */
    .tabbrowser-tab .tab-label {
        text-shadow: 1px 1px 0px #000000 !important;    
        font-weight: 500 !important;
        font-size:   14px !important;
        font-family: "Arial" !important;
        color: white !important;
    }
    .tabbrowser-tab .tab-label:not(:-moz-lwtheme) {
        text-shadow: none !important; 
        color: green !important; 
    }
    .tabbrowser-tab .tab-label[selected="true"] {
        text-shadow: 1px 1px 0px #000000 !important;
        color: yellow !important; 
        font-weight: 500 !important;
        font-size:   14px !important; 
        font-family: "Arial" !important; 
    }
    /* Tab-Line entfernen 
    #TabsToolbar .tabbrowser-tab .tab-line {
        display: none !important; 
    }*/
    /* Tab-Rahmen entfernen 
    #TabsToolbar .tabbrowser-tab[visuallyselected="true"],
    #TabsToolbar .tabbrowser-tab,
    #TabsToolbar .tabbrowser-tab .tab-background {
        background: unset !important;
        border-top: unset !important;
        outline: none !important;
    }*/
    /* Tab-Schließen-Button entfernen 
    .tabbrowser-tab .tab-close-button {
      visibility: collapse !important;
    }*/
    /* Abgerundete Ecken */
    #TabsToolbar .tabbrowser-tab,
    #TabsToolbar .tabbrowser-tab .tab-background
    {
        margin-right : -1px !important;
        background: unset;
        border-radius: 80px !important; 
        border: 1px solid rgba(0,0,0,0.1) !important;
    }
    /* Tab-Seperatoren entfernen 
    .tabbrowser-tab::after,
    .tabbrowser-tab::before {
      opacity: 3 !important;
      border-image: unset !important;
      border-image-slice: none !important;
      width: 2 !important;
    }*/
    /*ungelesene TAbs kursiv; ach private Tabs*/
    #main-window .tabbrowser-tab[titlechanged] {
        font-style: italic;
    }
    #main-window[privatebrowsingmode] .tabbrowser-tab[titlechanged] {
        font-style: italic;
    }
    
    /*------------------*/
    /* Tab-Hintergrund  */
    /*------------------*/
    /*--- selektiert ---
    .tab-background[selected=true]:not(:-moz-lwtheme) > spacer {
        background-image:  linear-gradient( rgba(103,171,224,50), rgba(10,58,95,80) ), none !important; /* blau */
        /*background-image:  linear-gradient( rgba(230,175,175,1), rgba(84,25,25,1) ),  none !important;*/  /* rot *
        filter: drop-shadow(4px 3px 2px rgba(0,0,0,0.33)) drop-shadow(-4px 3px 2px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }
    .tab-background[selected=true]:-moz-lwtheme > spacer {
        background-image:  linear-gradient( rgba(103,171,224,60), rgba(10,58,95,60) ), none !important;
        filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.33)) drop-shadow(-2px 3px 2px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }*/
    /* Aktiver Tab */
    .tabbrowser-tab[selected] .tab-content {
        background: rgba(255,46,250,1) !important;
        color: white !important;
    /*--- hover(nicht selektiert) ---*/
    .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]):not(:-moz-lwtheme) > spacer {
        background-image:  linear-gradient( rgba(255,255,255,1), rgba(115,115,115,1) ),  none !important; 
        filter: brightness(130%) contrast(95%) drop-shadow(1px 1px 1px rgba(0,0,0,0.33)) drop-shadow(-1px 1px 1px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }
    .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]):-moz-lwtheme > spacer {
        background-image:  linear-gradient( rgba(225,225,225,0.66), rgba(100,125,145,0.66) ),  none !important; 
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
        border-radius: 80px !important; 
    }
    /* Tab ungelesen */
    .tabbrowser-tab[pending] .tab-content{    
        background:  rgba(0,37,255,0.39) !important;
        color: yellow !important;
    }
    .tabbrowser-tab[pending] .tab-content:hover{
        background: orange !important;
    }
    /* Tab gelesen */
    .tabbrowser-tab .tab-content {
        background: rgba(0,234,255,0.38) !important;
        color: white !important; 
    }
    .tabbrowser-tab .tab-content:hover {
        background: orange !important;
        color: white !important; 
    }
    
    /* Tab-Line entfernen 
    #TabsToolbar .tabbrowser-tab .tab-line {
        display: none !important; 
    }*/
    
    /*--- nicht selektiert ---
    .tab-background:not([selected=true]):not(:-moz-lwtheme) > spacer {
        background-image:  linear-gradient( rgba(255,255,255,1), rgba(125,125,125,1) ),  none !important; 
        filter: brightness(115%) contrast(90%) drop-shadow(1px 1px 1px rgba(0,0,0,0.33)) drop-shadow(-1px 1px 1px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }
    .tab-background:not([selected=true]):-moz-lwtheme > spacer {
        background-image:  linear-gradient( rgba(255,255,255,0.33), rgba(110,110,110,0.33) ),  none !important; 
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
        border-radius: 80px !important; 
    }
    /*--- Multi-selektiert ---*
    .tab-background[multiselected=true]:not([selected=true]) > spacer {
        background-image:  linear-gradient( rgba(225,225,225,1), rgba(50,98,135,1) ), none !important;
        border-radius: 80px !important; 
    }
    .tabbrowser-tab:hover > .tab-stack > .tab-background[multiselected=true]:not([selected=true]) > spacer {
        background-image:  linear-gradient( rgba(225,225,225,1), rgba(50,98,135,1) ), none !important; 
        border-radius: 80px !important; 
    }   
    
    } */
    Alles anzeigen

    Meine beiden FF.Neustart-skripte reagieren gar nicht mehr.

    Hier "RestartFirefox":

    HTML
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
      <link rel="dns-prefetch" href="https://assets-cdn.github.com">
      <link rel="dns-prefetch" href="https://avatars0.githubusercontent.com">
      <link rel="dns-prefetch" href="https://avatars1.githubusercontent.com">
      <link rel="dns-prefetch" href="https://avatars2.githubusercontent.com">
      <link rel="dns-prefetch" href="https://avatars3.githubusercontent.com">
      <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
      <link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
    
    
    
      <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/frameworks-c9193575f18b28be82c0a963e144ff6fa7a809dd8ae003a1d1e5979bed3f7f00.css" integrity="sha256-yRk1dfGLKL6CwKlj4UT/b6eoCd2K4AOh0eWXm+0/fwA=" media="all" rel="stylesheet" />
      <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github-6536549f7712e1f35def45bde8e2dbb9c4304a1dd4d28e3368cceaab0deb093a.css" integrity="sha256-ZTZUn3cS4fNd70W96OLbucQwSh3U0o4zaMzqqw3rCTo=" media="all" rel="stylesheet" />
      
      
      <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/site-40d3ebebbd14d73c1a2f449e109a016ab13b3ba29987bc4f8eff487787682a7b.css" integrity="sha256-QNPr670U1zwaL0SeEJoBarE7O6KZh7xPjv9Id4doKns=" media="all" rel="stylesheet" />
      
    
      <meta name="viewport" content="width=device-width">
      
      <title>userChrome.js/RestartFirefox.uc.js at master · ardiman/userChrome.js · GitHub</title>
      <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
      <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
      <meta property="fb:app_id" content="1401488693436528">
    
        
        <meta content="https://avatars2.githubusercontent.com/u/952361?s=400&amp;v=4" property="og:image" /><meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="ardiman/userChrome.js" property="og:title" /><meta content="https://github.com/ardiman/userChrome.js" property="og:url" /><meta content="userChrome.js - Skripte für die Firefox-Erweiterung userChromeJS" property="og:description" />
    
      <link rel="assets" href="https://assets-cdn.github.com/">
      
      <meta name="pjax-timeout" content="1000">
      
      <meta name="request-id" content="F343:0507:56E660:9DFDA6:5A1D865F" data-pjax-transient>
      
    
      <meta name="selected-link" value="repo_source" data-pjax-transient>
    
      <meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
    <meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
        <meta name="google-analytics" content="UA-3769691-2">
    
    <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /><meta content="https://collector.githubapp.com/github-external/browser_event" name="octolytics-event-url" /><meta content="F343:0507:56E660:9DFDA6:5A1D865F" name="octolytics-dimension-request_id" /><meta content="iad" name="octolytics-dimension-region_edge" /><meta content="iad" name="octolytics-dimension-region_render" />
    <meta content="/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show" data-pjax-transient="true" name="analytics-location" />
    
    
    
    
      <meta class="js-ga-set" name="dimension1" content="Logged Out">
    
    
      
    
          <meta name="hostname" content="github.com">
      <meta name="user-login" content="">
    
          <meta name="expected-hostname" content="github.com">
        <meta name="js-proxy-site-detection-payload" content="NDI2OWM0NzMwMjQ2OWFiNzA0MDc5N2I2MzVmMjVjZDYxZjNlZjM4M2IxODk5OTRhOTg0MGU4MDExOTRjODcxNHx7InJlbW90ZV9hZGRyZXNzIjoiMzEuMTcuMjUxLjk1IiwicmVxdWVzdF9pZCI6IkYzNDM6MDUwNzo1NkU2NjA6OURGREE2OjVBMUQ4NjVGIiwidGltZXN0YW1wIjoxNTExODg0MzgzLCJob3N0IjoiZ2l0aHViLmNvbSJ9">
    
    
      <meta name="html-safe-nonce" content="3cab4267ad14498a79fd709adb1f7461b525c93a">
    
      <meta http-equiv="x-pjax-version" content="8bf01c23b33a49549eb45029db1a6994">
      
    
          <link href="https://github.com/ardiman/userChrome.js/commits/master.atom" rel="alternate" title="Recent Commits to userChrome.js:master" type="application/atom+xml">
    
      <meta name="description" content="userChrome.js - Skripte für die Firefox-Erweiterung userChromeJS">
      <meta name="go-import" content="github.com/ardiman/userChrome.js git https://github.com/ardiman/userChrome.js.git">
    
      <meta content="952361" name="octolytics-dimension-user_id" /><meta content="ardiman" name="octolytics-dimension-user_login" /><meta content="2143653" name="octolytics-dimension-repository_id" /><meta content="ardiman/userChrome.js" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="2143653" name="octolytics-dimension-repository_network_root_id" /><meta content="ardiman/userChrome.js" name="octolytics-dimension-repository_network_root_nwo" /><meta content="false" name="octolytics-dimension-repository_explore_github_marketplace_ci_cta_shown" />
    
    
        <link rel="canonical" href="https://github.com/ardiman/userChrome.js/blob/master/restartfirefox/RestartFirefox.uc.js" data-pjax-transient>
    
    
      <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
    
      <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
    
      <link rel="mask-icon" href="https://assets-cdn.github.com/pinned-octocat.svg" color="#000000">
      <link rel="icon" type="image/x-icon" class="js-site-favicon" href="https://assets-cdn.github.com/favicon.ico">
    
    <meta name="theme-color" content="#1e2327">
    
    
    
      </head>
    
      <body class="logged-out env-production page-blob">
        
    
      <div class="position-relative js-header-wrapper ">
        <a href="#start-of-content" tabindex="1" class="px-2 py-4 show-on-focus js-skip-to-content">Skip to content</a>
        <div id="js-pjax-loader-bar" class="pjax-loader-bar"><div class="progress"></div></div>
    
        
        
        
    
    
    
            <header class="Header header-logged-out  position-relative f4 py-3" role="banner">
      <div class="container-lg d-flex px-3">
        <div class="d-flex flex-justify-between flex-items-center">
          <a class="header-logo-invertocat my-0" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
            <svg aria-hidden="true" class="octicon octicon-mark-github" height="32" version="1.1" viewBox="0 0 16 16" width="32"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
          </a>
    
        </div>
    
        <div class="HeaderMenu HeaderMenu--bright d-flex flex-justify-between flex-auto">
            <nav class="mt-0">
              <ul class="d-flex list-style-none">
                  <li class="ml-2">
                    <a href="/features" class="js-selected-navigation-item HeaderNavlink px-0 py-2 m-0" data-ga-click="Header, click, Nav menu - item:features" data-selected-links="/features /features/project-management /features/code-review /features/project-management /features/integrations /features">
                      Features
    </a>              </li>
                  <li class="ml-4">
                    <a href="/business" class="js-selected-navigation-item HeaderNavlink px-0 py-2 m-0" data-ga-click="Header, click, Nav menu - item:business" data-selected-links="/business /business/security /business/customers /business">
                      Business
    </a>              </li>
    
                  <li class="ml-4">
                    <a href="/explore" class="js-selected-navigation-item HeaderNavlink px-0 py-2 m-0" data-ga-click="Header, click, Nav menu - item:explore" data-selected-links="/explore /trending /trending/developers /integrations /integrations/feature/code /integrations/feature/collaborate /integrations/feature/ship showcases showcases_search showcases_landing /explore">
                      Explore
    </a>              </li>
    
                  <li class="ml-4">
                        <a href="/marketplace" class="js-selected-navigation-item HeaderNavlink px-0 py-2 m-0" data-ga-click="Header, click, Nav menu - item:marketplace" data-selected-links=" /marketplace">
                          Marketplace
    </a>              </li>
                  <li class="ml-4">
                    <a href="/pricing" class="js-selected-navigation-item HeaderNavlink px-0 py-2 m-0" data-ga-click="Header, click, Nav menu - item:pricing" data-selected-links="/pricing /pricing/developer /pricing/team /pricing/business-hosted /pricing/business-enterprise /pricing">
                      Pricing
    </a>              </li>
              </ul>
            </nav>
    
          <div class="d-flex">
              <div class="d-lg-flex flex-items-center mr-3">
                <div class="header-search scoped-search site-scoped-search js-site-search" role="search">
      <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="/ardiman/userChrome.js/search" class="js-site-search-form" data-scoped-search-url="/ardiman/userChrome.js/search" data-unscoped-search-url="/search" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
        <label class="form-control header-search-wrapper js-chromeless-input-container">
            <a href="/ardiman/userChrome.js/blob/master/restartfirefox/RestartFirefox.uc.js" class="header-search-scope no-underline">This repository</a>
          <input type="text"
            class="form-control header-search-input js-site-search-focus js-site-search-field is-clearable"
            data-hotkey="s"
            name="q"
            value=""
            placeholder="Search"
            aria-label="Search this repository"
            data-unscoped-placeholder="Search GitHub"
            data-scoped-placeholder="Search"
            autocapitalize="off">
            <input type="hidden" class="js-site-search-type-field" name="type" >
        </label>
    </form></div>
    
              </div>
    
            <span class="d-inline-block">
                <div class="HeaderNavlink px-0 py-2 m-0">
                  <a class="text-bold text-white no-underline" href="/login?return_to=%2Fardiman%2FuserChrome.js%2Fblob%2Fmaster%2Frestartfirefox%2FRestartFirefox.uc.js" data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">Sign in</a>
                    <span class="text-gray">or</span>
                    <a class="text-bold text-white no-underline" href="/join?source=header-repo" data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">Sign up</a>
                </div>
            </span>
          </div>
        </div>
      </div>
    </header>
    
    
      </div>
    
      <div id="start-of-content" class="show-on-focus"></div>
    
        <div id="js-flash-container">
    </div>
    
    
    
      <div role="main">
            <div itemscope itemtype="http://schema.org/SoftwareSourceCode">
        <div id="js-repo-pjax-container" data-pjax-container>
          
    
    
    
    
    
        <div class="pagehead repohead instapaper_ignore readability-menu experiment-repo-nav ">
          <div class="repohead-details-container clearfix container ">
    
            <ul class="pagehead-actions">
      <li>
          <a href="/login?return_to=%2Fardiman%2FuserChrome.js"
        class="btn btn-sm btn-with-count tooltipped tooltipped-n"
        aria-label="You must be signed in to watch a repository" rel="nofollow">
        <svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
        Watch
      </a>
      <a class="social-count" href="/ardiman/userChrome.js/watchers"
         aria-label="25 users are watching this repository">
        25
      </a>
    
      </li>
    
      <li>
          <a href="/login?return_to=%2Fardiman%2FuserChrome.js"
        class="btn btn-sm btn-with-count tooltipped tooltipped-n"
        aria-label="You must be signed in to star a repository" rel="nofollow">
        <svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"/></svg>
        Star
      </a>
    
        <a class="social-count js-social-count" href="/ardiman/userChrome.js/stargazers"
          aria-label="80 users starred this repository">
          80
        </a>
    
      </li>
    
      <li>
          <a href="/login?return_to=%2Fardiman%2FuserChrome.js"
            class="btn btn-sm btn-with-count tooltipped tooltipped-n"
            aria-label="You must be signed in to fork a repository" rel="nofollow">
            <svg aria-hidden="true" class="octicon octicon-repo-forked" height="16" version="1.1" viewBox="0 0 10 16" width="10"><path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
            Fork
          </a>
    
        <a href="/ardiman/userChrome.js/network" class="social-count"
           aria-label="46 users forked this repository">
          46
        </a>
      </li>
    </ul>
    
            <h1 class="public ">
      <svg aria-hidden="true" class="octicon octicon-repo" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
      <span class="author" itemprop="author"><a href="/ardiman" class="url fn" rel="author">ardiman</a></span><!--
    --><span class="path-divider">/</span><!--
    --><strong itemprop="name"><a href="/ardiman/userChrome.js" data-pjax="#js-repo-pjax-container">userChrome.js</a></strong>
    
    </h1>
    
          </div>
          
    <nav class="reponav js-repo-nav js-sidenav-container-pjax container"
         itemscope
         itemtype="http://schema.org/BreadcrumbList"
         role="navigation"
         data-pjax="#js-repo-pjax-container">
    
      <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
        <a href="/ardiman/userChrome.js" class="js-selected-navigation-item selected reponav-item" data-hotkey="g c" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages /ardiman/userChrome.js" itemprop="url">
          <svg aria-hidden="true" class="octicon octicon-code" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"/></svg>
          <span itemprop="name">Code</span>
          <meta itemprop="position" content="1">
    </a>  </span>
    
        <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
          <a href="/ardiman/userChrome.js/issues" class="js-selected-navigation-item reponav-item" data-hotkey="g i" data-selected-links="repo_issues repo_labels repo_milestones /ardiman/userChrome.js/issues" itemprop="url">
            <svg aria-hidden="true" class="octicon octicon-issue-opened" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"/></svg>
            <span itemprop="name">Issues</span>
            <span class="Counter">0</span>
            <meta itemprop="position" content="2">
    </a>    </span>
    
      <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
        <a href="/ardiman/userChrome.js/pulls" class="js-selected-navigation-item reponav-item" data-hotkey="g p" data-selected-links="repo_pulls /ardiman/userChrome.js/pulls" itemprop="url">
          <svg aria-hidden="true" class="octicon octicon-git-pull-request" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 10 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v6.56A1.993 1.993 0 0 0 2 15a1.993 1.993 0 0 0 1-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
          <span itemprop="name">Pull requests</span>
          <span class="Counter">0</span>
          <meta itemprop="position" content="3">
    </a>  </span>
    
        <a href="/ardiman/userChrome.js/projects" class="js-selected-navigation-item reponav-item" data-hotkey="g b" data-selected-links="repo_projects new_repo_project repo_project /ardiman/userChrome.js/projects">
          <svg aria-hidden="true" class="octicon octicon-project" height="16" version="1.1" viewBox="0 0 15 16" width="15"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1z"/></svg>
          Projects
          <span class="Counter" >0</span>
    </a>
        <a href="/ardiman/userChrome.js/wiki" class="js-selected-navigation-item reponav-item" data-hotkey="g w" data-selected-links="repo_wiki /ardiman/userChrome.js/wiki">
          <svg aria-hidden="true" class="octicon octicon-book" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z"/></svg>
          Wiki
    </a>
    
      <a href="/ardiman/userChrome.js/pulse" class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors dependency_graph pulse /ardiman/userChrome.js/pulse">
        <svg aria-hidden="true" class="octicon octicon-graph" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"/></svg>
        Insights
    </a>
    
    </nav>
    
    
        </div>
    
    <div class="container new-discussion-timeline experiment-repo-nav">
      <div class="repository-content">
    
        
      <a href="/ardiman/userChrome.js/blob/1ff7a1db68955906fc8a1272f231fa6dcba0fa30/restartfirefox/RestartFirefox.uc.js" class="d-none js-permalink-shortcut" data-hotkey="y">Permalink</a>
    
      <!-- blob contrib key: blob_contributors:v21:93a1f75a6719c4ff861d76f4d5cd5cfa -->
    
      <div class="file-navigation js-zeroclipboard-container">
        
    <div class="select-menu branch-select-menu js-menu-container js-select-menu float-left">
      <button class=" btn btn-sm select-menu-button js-menu-target css-truncate" data-hotkey="w"
        
        type="button" aria-label="Switch branches or tags" aria-expanded="false" aria-haspopup="true">
          <i>Branch:</i>
          <span class="js-select-button css-truncate-target">master</span>
      </button>
    
      <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax>
    
        <div class="select-menu-modal">
          <div class="select-menu-header">
            <svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
            <span class="select-menu-title">Switch branches/tags</span>
          </div>
    
          <div class="select-menu-filters">
            <div class="select-menu-text-filter">
              <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="form-control js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
            </div>
            <div class="select-menu-tabs">
              <ul>
                <li class="select-menu-tab">
                  <a href="#" data-tab-filter="branches" data-filter-placeholder="Filter branches/tags" class="js-select-menu-tab" role="tab">Branches</a>
                </li>
                <li class="select-menu-tab">
                  <a href="#" data-tab-filter="tags" data-filter-placeholder="Find a tag…" class="js-select-menu-tab" role="tab">Tags</a>
                </li>
              </ul>
            </div>
          </div>
    
          <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches" role="menu">
    
            <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
    
    
                <a class="select-menu-item js-navigation-item js-navigation-open selected"
                   href="/ardiman/userChrome.js/blob/master/restartfirefox/RestartFirefox.uc.js"
                   data-name="master"
                   data-skip-pjax="true"
                   rel="nofollow">
                  <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"/></svg>
                  <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text">
                    master
                  </span>
                </a>
            </div>
    
              <div class="select-menu-no-results">Nothing to show</div>
          </div>
    
          <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
            <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
    
    
            </div>
    
            <div class="select-menu-no-results">Nothing to show</div>
          </div>
    
        </div>
      </div>
    </div>
    
        <div class="BtnGroup float-right">
          <a href="/ardiman/userChrome.js/find/master"
                class="js-pjax-capture-input btn btn-sm BtnGroup-item"
                data-pjax
                data-hotkey="t">
            Find file
          </a>
          <button aria-label="Copy file path to clipboard" class="js-zeroclipboard btn btn-sm BtnGroup-item tooltipped tooltipped-s" data-copied-hint="Copied!" type="button">Copy path</button>
        </div>
        <div class="breadcrumb js-zeroclipboard-target">
          <span class="repo-root js-repo-root"><span class="js-path-segment"><a href="/ardiman/userChrome.js"><span>userChrome.js</span></a></span></span><span class="separator">/</span><span class="js-path-segment"><a href="/ardiman/userChrome.js/tree/master/restartfirefox"><span>restartfirefox</span></a></span><span class="separator">/</span><strong class="final-path">RestartFirefox.uc.js</strong>
        </div>
      </div>
    
    
      <include-fragment class="commit-tease" src="/ardiman/userChrome.js/contributors/master/restartfirefox/RestartFirefox.uc.js">
        <div>
          Fetching contributors&hellip;
        </div>
    
        <div class="commit-tease-contributors">
          <img alt="" class="loader-loading float-left" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32-EAF2F5.gif" width="16" />
          <span class="loader-error">Cannot retrieve contributors at this time</span>
        </div>
    </include-fragment>
    
      <div class="file">
        <div class="file-header">
      <div class="file-actions">
    
        <div class="BtnGroup">
          <a href="/ardiman/userChrome.js/raw/master/restartfirefox/RestartFirefox.uc.js" class="btn btn-sm BtnGroup-item" id="raw-url">Raw</a>
            <a href="/ardiman/userChrome.js/blame/master/restartfirefox/RestartFirefox.uc.js" class="btn btn-sm js-update-url-with-hash BtnGroup-item" data-hotkey="b">Blame</a>
          <a href="/ardiman/userChrome.js/commits/master/restartfirefox/RestartFirefox.uc.js" class="btn btn-sm BtnGroup-item" rel="nofollow">History</a>
        </div>
    
            <a class="btn-octicon tooltipped tooltipped-nw"
               href="https://desktop.github.com"
               aria-label="Open this file in GitHub Desktop"
               data-ga-click="Repository, open with desktop, type:windows">
                <svg aria-hidden="true" class="octicon octicon-device-desktop" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M15 2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 9H1V3h14v8z"/></svg>
            </a>
    
            <button type="button" class="btn-octicon disabled tooltipped tooltipped-nw"
              aria-label="You must be signed in to make or propose changes">
              <svg aria-hidden="true" class="octicon octicon-pencil" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path fill-rule="evenodd" d="M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 0 1 1.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"/></svg>
            </button>
            <button type="button" class="btn-octicon btn-octicon-danger disabled tooltipped tooltipped-nw"
              aria-label="You must be signed in to make or propose changes">
              <svg aria-hidden="true" class="octicon octicon-trashcan" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"/></svg>
            </button>
      </div>
    
      <div class="file-info">
          72 lines (65 sloc)
          <span class="file-info-divider"></span>
        8.35 KB
      </div>
    </div>
    
        
    
      <div itemprop="text" class="blob-wrapper data type-javascript">
          <table class="highlight tab-size js-file-line-container" data-tab-size="8">
          <tr>
            <td id="L1" class="blob-num js-line-number" data-line-number="1"></td>
            <td id="LC1" class="blob-code blob-code-inner js-file-line">    <span class="pl-c"><span class="pl-c">//</span>      RestartFirefox_plus.uc.js   2</span></td>
          </tr>
          <tr>
            <td id="L2" class="blob-num js-line-number" data-line-number="2"></td>
            <td id="LC2" class="blob-code blob-code-inner js-file-line">
    </td>
          </tr>
          <tr>
            <td id="L3" class="blob-num js-line-number" data-line-number="3"></td>
            <td id="LC3" class="blob-code blob-code-inner js-file-line">    (<span class="pl-k">function</span>() {</td>
          </tr>
          <tr>
            <td id="L4" class="blob-num js-line-number" data-line-number="4"></td>
            <td id="LC4" class="blob-code blob-code-inner js-file-line">
    </td>
          </tr>
          <tr>
            <td id="L5" class="blob-num js-line-number" data-line-number="5"></td>
            <td id="LC5" class="blob-code blob-code-inner js-file-line">       <span class="pl-k">if</span> (location <span class="pl-k">!=</span> <span class="pl-s"><span class="pl-pds">&#39;</span>chrome://browser/content/browser.xhtml<span class="pl-pds">&#39;</span></span>) <span class="pl-k">return</span>;</td>
          </tr>
          <tr>
            <td id="L6" class="blob-num js-line-number" data-line-number="6"></td>
            <td id="LC6" class="blob-code blob-code-inner js-file-line">       </td>
          </tr>
          <tr>
            <td id="L7" class="blob-num js-line-number" data-line-number="7"></td>
            <td id="LC7" class="blob-code blob-code-inner js-file-line">       <span class="pl-k">try</span> {</td>
          </tr>
          <tr>
            <td id="L8" class="blob-num js-line-number" data-line-number="8"></td>
            <td id="LC8" class="blob-code blob-code-inner js-file-line">          <span class="pl-smi">CustomizableUI</span>.<span class="pl-en">createWidget</span>({</td>
          </tr>
          <tr>
            <td id="L9" class="blob-num js-line-number" data-line-number="9"></td>
            <td id="LC9" class="blob-code blob-code-inner js-file-line">             id<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>restart-button<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L10" class="blob-num js-line-number" data-line-number="10"></td>
            <td id="LC10" class="blob-code blob-code-inner js-file-line">             type<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>custom<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L11" class="blob-num js-line-number" data-line-number="11"></td>
            <td id="LC11" class="blob-code blob-code-inner js-file-line">             defaultArea<span class="pl-k">:</span> <span class="pl-smi">CustomizableUI</span>.<span class="pl-c1">AREA_NAVBAR</span>,</td>
          </tr>
          <tr>
            <td id="L12" class="blob-num js-line-number" data-line-number="12"></td>
            <td id="LC12" class="blob-code blob-code-inner js-file-line">             <span class="pl-en">onBuild</span><span class="pl-k">:</span> <span class="pl-k">function</span>(<span class="pl-smi">aDocument</span>) {         </td>
          </tr>
          <tr>
            <td id="L13" class="blob-num js-line-number" data-line-number="13"></td>
            <td id="LC13" class="blob-code blob-code-inner js-file-line">                <span class="pl-k">var</span> toolbaritem <span class="pl-k">=</span> <span class="pl-smi">aDocument</span>.<span class="pl-c1">createElementNS</span>(<span class="pl-s"><span class="pl-pds">&#39;</span>http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul<span class="pl-pds">&#39;</span></span>, <span class="pl-s"><span class="pl-pds">&#39;</span>toolbarbutton<span class="pl-pds">&#39;</span></span>);</td>
          </tr>
          <tr>
            <td id="L14" class="blob-num js-line-number" data-line-number="14"></td>
            <td id="LC14" class="blob-code blob-code-inner js-file-line">                <span class="pl-k">var</span> props <span class="pl-k">=</span> {</td>
          </tr>
          <tr>
            <td id="L15" class="blob-num js-line-number" data-line-number="15"></td>
            <td id="LC15" class="blob-code blob-code-inner js-file-line">                   id<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>restart-button<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L16" class="blob-num js-line-number" data-line-number="16"></td>
            <td id="LC16" class="blob-code blob-code-inner js-file-line">                   class<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>toolbarbutton-1 chromeclass-toolbar-additional<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L17" class="blob-num js-line-number" data-line-number="17"></td>
            <td id="LC17" class="blob-code blob-code-inner js-file-line">                   removable<span class="pl-k">:</span> <span class="pl-c1">false</span>,</td>
          </tr>
          <tr>
            <td id="L18" class="blob-num js-line-number" data-line-number="18"></td>
            <td id="LC18" class="blob-code blob-code-inner js-file-line">                   label<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>Neustart<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L19" class="blob-num js-line-number" data-line-number="19"></td>
            <td id="LC19" class="blob-code blob-code-inner js-file-line">                   tooltiptext<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>Neustart (mit Rechts- und Mittelklick wird userChrome.js-Cache geleert)<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L20" class="blob-num js-line-number" data-line-number="20"></td>
            <td id="LC20" class="blob-code blob-code-inner js-file-line">                   style: &#39;list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8%2F9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89%2BbN%2FrXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz%2FSMBAPh%2BPDwrIsAHvgABeNMLCADATZvAMByH%2Fw%2FqQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf%2BbTAICd%2BJl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA%2Fg88wAAKCRFRHgg%2FP9eM4Ors7ONo62Dl8t6r8G%2FyJiYuP%2B5c%2BrcEAAAOF0ftH%2BLC%2BzGoA7BoBt%2FqIl7gRoXgugdfeLZrIPQLUAoOnaV%2FNw%2BH48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl%2FAV%2F1s%2BX48%2FPf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H%2FLcL%2F%2Fwd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s%2BwM%2B3zUAsGo%2BAXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93%2F%2B8%2F%2FUegJQCAZkmScQAAXkQkLlTKsz%2FHCAAARKCBKrBBG%2FTBGCzABhzBBdzBC%2FxgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD%2FphCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8%2BQ8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8%2BxdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR%2BcQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI%2BksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG%2BQh8lsKnWJAcaT4U%2BIoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr%2Bh0uhHdlR5Ol9BX0svpR%2BiX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK%2BYTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI%2BpXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q%2FpH5Z%2FYkGWcNMw09DpFGgsV%2FjvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY%2FR27iz2qqaE5QzNKM1ezUvOUZj8H45hx%2BJx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4%2FOBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up%2B6Ynr5egJ5Mb6feeb3n%2Bhx9L%2F1U%2FW36p%2FVHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm%2Beb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw%2B6TvZN9un2N%2FT0HDYfZDqsdWh1%2Bc7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc%2BLpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26%2FuNu5p7ofcn8w0nymeWTNz0MPIQ%2BBR5dE%2FC5%2BVMGvfrH5PQ0%2BBZ7XnIy9jL5FXrdewt6V3qvdh7xc%2B9j5yn%2BM%2B4zw33jLeWV%2FMN8C3yLfLT8Nvnl%2BF30N%2FI%2F9k%2F3r%2F0QCngCUBZwOJgUGBWwL7%2BHp8Ib%2BOPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo%2Bqi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt%2F87fOH4p3iC%2BN7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi%2FRNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z%2Bpn5mZ2y6xlhbL%2BxW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a%2FzYnKOZarnivN7cyzytuQN5zvn%2F%2FtEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1%2B1dT1gvWd%2B1YfqGnRs%2BFYmKrhTbF5cVf9go3HjlG4dvyr%2BZ3JS0qavEuWTPZtJm6ebeLZ5bDpaql%2BaXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO%2FPLi8ZafJzs07P1SkVPRU%2BlQ27tLdtWHX%2BG7R7ht7vPY07NXbW7z3%2FT7JvttVAVVN1WbVZftJ%2B7P3P66Jqun4lvttXa1ObXHtxwPSA%2F0HIw6217nU1R3SPVRSj9Yr60cOxx%2B%2B%2Fp3vdy0NNg1VjZzG4iNwRHnk6fcJ3%2FceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w%2B0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb%2B%2B6EHTh0kX%2Fi%2Bc7vDvOXPK4dPKy2%2BUTV7hXmq86X23qdOo8%2FpPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb%2F1tWeOT3dvfN6b%2FfF9%2FXfFt1%2Bcif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v%2B3Njv3H9qwHeg89HcR%2FcGhYPP%2FpH1jw9DBY%2BZj8uGDYbrnjg%2BOTniP3L96fynQ89kzyaeF%2F6i%2FsuuFxYvfvjV69fO0ZjRoZfyl5O%2FbXyl%2FerA6xmv28bCxh6%2ByXgzMV70VvvtwXfcdx3vo98PT%2BR8IH8o%2F2j5sfVT0Kf7kxmTk%2F8EA5jz%2FGMzLdsAAAAEZ0FNQQAAsY58%2B1GTAAAAIGNIUk0AAHolAACAgwAA%2Bf8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAN8SURBVHjaVJFNTBxlAIafb2Z29gd2l4VdYCkokAUt1AJplQRTrVqjUWMPPWHSCzb21IOn9qIHY2xMahoTTb00NmkUm5qAjdpUI61VaCxCpCVYixt%2ByvKzCwu7LDs7zMw3HmhM%2Bt6fJ0%2FyCp69wiOzZBCPcqSmIXg0HPHuC4R8nkLWyOXyYiIzfuVHzMIA%2BZsLtH18EApntUdhpzUSD5577nDLi%2FGWKjx%2BHVfR8HpFwNwsxTMzza%2BOXJ1%2B58Ev2sVEV%2ByEawXqxf8FllNWEQ9ePXzsqQOecIDU8jampSAVD76Al2BIIx4Dv2Nz7%2FYq%2B5%2BP8sNXE6WdAhdQlOM9rzUdaGiN8M9UjnKvQjzuA0UjV3AxDIcHywqRoEbXoVrKgyBtKXYEUvprmiN9oaoyvr9wl62NHJbtJeDzOo17YmprVzWOppLO2RRNwf1FSOzSUAXsCIR4QdP13UPfjhUde2mjuBXUjcXNEabOnJmq7Y4Nd7z1fu%2BJ%2FR2Jpgrm0jauAI8GlnSlBi4I0bO6sLBWHc9esxRdmjOZf5n%2B5CLWzCzOvsbKupBZ1xgmElUoC%2BgoKtRGQfNomoaND8P8XS%2Bby1olO7O6GHTl1DejGDOrNB%2BvpO7I%2Ba31%2FDP9Z28YUmqoqhCKcG2EYD6ZMUTojZ8WHmsqD%2BI6wnWFajugCkuuZaV%2FZS47wp99R7E3LbxPV6rtr7dV1pmyuBWs3hr7dZ380LC2tzseffvUHm86C1JC2A%2FrGcn509cn%2BPvTk9ibc1R06qL91Ms1CadF000ll9rVS2VykLzVr0lHOgtpuJ9yUFyXxqhKZjbH2nJRI9IZwyw2kXjvXV%2FIOWgaBcc2a%2BtjdVXR1J3iBDx8QUpQUJAuJJclseogxz441H5vrPO72cm0VSyVPJq27ZaHm8ST3Y0M9d9Kkr19A1A1x4VIObTGBfNrsJ5XmE9b6KqgvrOGhr1Vns2sgeNIkXiigvHf1liZuHWZYjINSEXRVLewZjN6bYmYbvN4rcDvVzFKLnOpErMLBpvbklClznyyyPDA6DjTX3wJWICr%2Bnb3ffjXSGpl5Nxnn88uh2ORUCBaHfVQU%2BsjVuGhKqJT5lFYShr8fGH4j42bH53EnJ4EtgEEPQOTzHx9mqXLl9AT9TS82RvreOmVcMTXVh4JhIr5kp3LFu6u3Lk%2ByMylQazU3ENYAvw3AFUTimFqj5i7AAAAAElFTkSuQmCC)&#39;,</td>
          </tr>
          <tr>
            <td id="L21" class="blob-num js-line-number" data-line-number="21"></td>
            <td id="LC21" class="blob-code blob-code-inner js-file-line">                   onclick<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>if (event.button == 1 || event.button == 2) { \</span></td>
          </tr>
          <tr>
            <td id="L22" class="blob-num js-line-number" data-line-number="22"></td>
            <td id="LC22" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                               event.preventDefault(); \</span></td>
          </tr>
          <tr>
            <td id="L23" class="blob-num js-line-number" data-line-number="23"></td>
            <td id="LC23" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                               Cc[&quot;@mozilla.org/xre/app-info;1&quot;].getService(Ci.nsIXULRuntime). \</span></td>
          </tr>
          <tr>
            <td id="L24" class="blob-num js-line-number" data-line-number="24"></td>
            <td id="LC24" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                                  invalidateCachesOnRestart(); \</span></td>
          </tr>
          <tr>
            <td id="L25" class="blob-num js-line-number" data-line-number="25"></td>
            <td id="LC25" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                             }; \</span></td>
          </tr>
          <tr>
            <td id="L26" class="blob-num js-line-number" data-line-number="26"></td>
            <td id="LC26" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                             BrowserUtils.restartApplication();<span class="pl-pds">&#39;</span></span></td>
          </tr>
          <tr>
            <td id="L27" class="blob-num js-line-number" data-line-number="27"></td>
            <td id="LC27" class="blob-code blob-code-inner js-file-line">                };            </td>
          </tr>
          <tr>
            <td id="L28" class="blob-num js-line-number" data-line-number="28"></td>
            <td id="LC28" class="blob-code blob-code-inner js-file-line">                <span class="pl-k">for</span> (<span class="pl-k">var</span> p <span class="pl-k">in</span> props)</td>
          </tr>
          <tr>
            <td id="L29" class="blob-num js-line-number" data-line-number="29"></td>
            <td id="LC29" class="blob-code blob-code-inner js-file-line">                   <span class="pl-smi">toolbaritem</span>.<span class="pl-c1">setAttribute</span>(p, props[p]);            </td>
          </tr>
          <tr>
            <td id="L30" class="blob-num js-line-number" data-line-number="30"></td>
            <td id="LC30" class="blob-code blob-code-inner js-file-line">                <span class="pl-k">return</span> toolbaritem;</td>
          </tr>
          <tr>
            <td id="L31" class="blob-num js-line-number" data-line-number="31"></td>
            <td id="LC31" class="blob-code blob-code-inner js-file-line">             }      </td>
          </tr>
          <tr>
            <td id="L32" class="blob-num js-line-number" data-line-number="32"></td>
            <td id="LC32" class="blob-code blob-code-inner js-file-line">          });</td>
          </tr>
          <tr>
            <td id="L33" class="blob-num js-line-number" data-line-number="33"></td>
            <td id="LC33" class="blob-code blob-code-inner js-file-line">       } <span class="pl-k">catch</span>(e) { };   </td>
          </tr>
          <tr>
            <td id="L34" class="blob-num js-line-number" data-line-number="34"></td>
            <td id="LC34" class="blob-code blob-code-inner js-file-line">       </td>
          </tr>
          <tr>
            <td id="L35" class="blob-num js-line-number" data-line-number="35"></td>
            <td id="LC35" class="blob-code blob-code-inner js-file-line">       <span class="pl-k">var</span> menuitem <span class="pl-k">=</span> <span class="pl-c1">document</span>.<span class="pl-c1">createXULElement</span>(<span class="pl-s"><span class="pl-pds">&#39;</span>menuitem<span class="pl-pds">&#39;</span></span>);   </td>
          </tr>
          <tr>
            <td id="L36" class="blob-num js-line-number" data-line-number="36"></td>
            <td id="LC36" class="blob-code blob-code-inner js-file-line">       <span class="pl-k">var</span> props <span class="pl-k">=</span> {</td>
          </tr>
          <tr>
            <td id="L37" class="blob-num js-line-number" data-line-number="37"></td>
            <td id="LC37" class="blob-code blob-code-inner js-file-line">          id<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>restartfirefox-fileMenu2<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L38" class="blob-num js-line-number" data-line-number="38"></td>
            <td id="LC38" class="blob-code blob-code-inner js-file-line">          label<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>Neustart<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L39" class="blob-num js-line-number" data-line-number="39"></td>
            <td id="LC39" class="blob-code blob-code-inner js-file-line">          tooltiptext<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>Neustart (mit Rechts- und Mittelklick wird userChrome.js-Cache geleert)<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L40" class="blob-num js-line-number" data-line-number="40"></td>
            <td id="LC40" class="blob-code blob-code-inner js-file-line">          onclick<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>if (event.button == 1 || event.button == 2) { \</span></td>
          </tr>
          <tr>
            <td id="L41" class="blob-num js-line-number" data-line-number="41"></td>
            <td id="LC41" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                      event.preventDefault(); \</span></td>
          </tr>
          <tr>
            <td id="L42" class="blob-num js-line-number" data-line-number="42"></td>
            <td id="LC42" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                      Cc[&quot;@mozilla.org/xre/app-info;1&quot;].getService(Ci.nsIXULRuntime). \</span></td>
          </tr>
          <tr>
            <td id="L43" class="blob-num js-line-number" data-line-number="43"></td>
            <td id="LC43" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                         invalidateCachesOnRestart(); \</span></td>
          </tr>
          <tr>
            <td id="L44" class="blob-num js-line-number" data-line-number="44"></td>
            <td id="LC44" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                    }; \</span></td>
          </tr>
          <tr>
            <td id="L45" class="blob-num js-line-number" data-line-number="45"></td>
            <td id="LC45" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                    BrowserUtils.restartApplication();<span class="pl-pds">&#39;</span></span></td>
          </tr>
          <tr>
            <td id="L46" class="blob-num js-line-number" data-line-number="46"></td>
            <td id="LC46" class="blob-code blob-code-inner js-file-line">       };            </td>
          </tr>
          <tr>
            <td id="L47" class="blob-num js-line-number" data-line-number="47"></td>
            <td id="LC47" class="blob-code blob-code-inner js-file-line">       <span class="pl-k">for</span> (<span class="pl-k">var</span> p <span class="pl-k">in</span> props)</td>
          </tr>
          <tr>
            <td id="L48" class="blob-num js-line-number" data-line-number="48"></td>
            <td id="LC48" class="blob-code blob-code-inner js-file-line">          <span class="pl-smi">menuitem</span>.<span class="pl-c1">setAttribute</span>(p, props[p]);      </td>
          </tr>
          <tr>
            <td id="L49" class="blob-num js-line-number" data-line-number="49"></td>
            <td id="LC49" class="blob-code blob-code-inner js-file-line">       <span class="pl-c1">document</span>.<span class="pl-c1">getElementById</span>(<span class="pl-s"><span class="pl-pds">&#39;</span>menu_FilePopup<span class="pl-pds">&#39;</span></span>).<span class="pl-c1">insertBefore</span>(menuitem, <span class="pl-c1">document</span>.<span class="pl-c1">getElementById</span>(<span class="pl-s"><span class="pl-pds">&#39;</span>menu_FileQuitItem<span class="pl-pds">&#39;</span></span>));</td>
          </tr>
          <tr>
            <td id="L50" class="blob-num js-line-number" data-line-number="50"></td>
            <td id="LC50" class="blob-code blob-code-inner js-file-line">
    </td>
          </tr>
          <tr>
            <td id="L51" class="blob-num js-line-number" data-line-number="51"></td>
            <td id="LC51" class="blob-code blob-code-inner js-file-line">       <span class="pl-k">var</span> pane1 <span class="pl-k">=</span> <span class="pl-c1">document</span>.<span class="pl-c1">getElementById</span>(<span class="pl-s"><span class="pl-pds">&#39;</span>appmenuPrimaryPane<span class="pl-pds">&#39;</span></span>);   </td>
          </tr>
          <tr>
            <td id="L52" class="blob-num js-line-number" data-line-number="52"></td>
            <td id="LC52" class="blob-code blob-code-inner js-file-line">       <span class="pl-k">if</span> (pane1) {   </td>
          </tr>
          <tr>
            <td id="L53" class="blob-num js-line-number" data-line-number="53"></td>
            <td id="LC53" class="blob-code blob-code-inner js-file-line">          menuitem <span class="pl-k">=</span> <span class="pl-c1">document</span>.<span class="pl-c1">createXULElement</span>(<span class="pl-s"><span class="pl-pds">&#39;</span>menuitem<span class="pl-pds">&#39;</span></span>);   </td>
          </tr>
          <tr>
            <td id="L54" class="blob-num js-line-number" data-line-number="54"></td>
            <td id="LC54" class="blob-code blob-code-inner js-file-line">          <span class="pl-k">var</span> props <span class="pl-k">=</span> {</td>
          </tr>
          <tr>
            <td id="L55" class="blob-num js-line-number" data-line-number="55"></td>
            <td id="LC55" class="blob-code blob-code-inner js-file-line">             id<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>restartfirefox-fileMenu<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L56" class="blob-num js-line-number" data-line-number="56"></td>
            <td id="LC56" class="blob-code blob-code-inner js-file-line">             class<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>menuitem-iconic<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L57" class="blob-num js-line-number" data-line-number="57"></td>
            <td id="LC57" class="blob-code blob-code-inner js-file-line">             label<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>Neustart<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L58" class="blob-num js-line-number" data-line-number="58"></td>
            <td id="LC58" class="blob-code blob-code-inner js-file-line">             tooltiptext<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>Neustart (mit Rechts- und Mittelklick wird userChrome.js-Cache geleert)<span class="pl-pds">&#39;</span></span>,</td>
          </tr>
          <tr>
            <td id="L59" class="blob-num js-line-number" data-line-number="59"></td>
            <td id="LC59" class="blob-code blob-code-inner js-file-line">             onclick<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">&#39;</span>if (event.button == 1 || event.button == 2) { \</span></td>
          </tr>
          <tr>
            <td id="L60" class="blob-num js-line-number" data-line-number="60"></td>
            <td id="LC60" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                         event.preventDefault(); \</span></td>
          </tr>
          <tr>
            <td id="L61" class="blob-num js-line-number" data-line-number="61"></td>
            <td id="LC61" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                         Cc[&quot;@mozilla.org/xre/app-info;1&quot;].getService(Ci.nsIXULRuntime). \</span></td>
          </tr>
          <tr>
            <td id="L62" class="blob-num js-line-number" data-line-number="62"></td>
            <td id="LC62" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                            invalidateCachesOnRestart(); \</span></td>
          </tr>
          <tr>
            <td id="L63" class="blob-num js-line-number" data-line-number="63"></td>
            <td id="LC63" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                       }; \</span></td>
          </tr>
          <tr>
            <td id="L64" class="blob-num js-line-number" data-line-number="64"></td>
            <td id="LC64" class="blob-code blob-code-inner js-file-line"><span class="pl-s">                       BrowserUtils.restartApplication();<span class="pl-pds">&#39;</span></span></td>
          </tr>
          <tr>
            <td id="L65" class="blob-num js-line-number" data-line-number="65"></td>
            <td id="LC65" class="blob-code blob-code-inner js-file-line">          };            </td>
          </tr>
          <tr>
            <td id="L66" class="blob-num js-line-number" data-line-number="66"></td>
            <td id="LC66" class="blob-code blob-code-inner js-file-line">          <span class="pl-k">for</span> (<span class="pl-k">var</span> p <span class="pl-k">in</span> props)</td>
          </tr>
          <tr>
            <td id="L67" class="blob-num js-line-number" data-line-number="67"></td>
            <td id="LC67" class="blob-code blob-code-inner js-file-line">             <span class="pl-smi">menuitem</span>.<span class="pl-c1">setAttribute</span>(p, props[p]);</td>
          </tr>
          <tr>
            <td id="L68" class="blob-num js-line-number" data-line-number="68"></td>
            <td id="LC68" class="blob-code blob-code-inner js-file-line">          <span class="pl-smi">pane1</span>.<span class="pl-c1">insertBefore</span>(menuitem, <span class="pl-c1">document</span>.<span class="pl-c1">getElementById</span>(<span class="pl-s"><span class="pl-pds">&#39;</span>appmenu-quit<span class="pl-pds">&#39;</span></span>));</td>
          </tr>
          <tr>
            <td id="L69" class="blob-num js-line-number" data-line-number="69"></td>
            <td id="LC69" class="blob-code blob-code-inner js-file-line">       };</td>
          </tr>
          <tr>
            <td id="L70" class="blob-num js-line-number" data-line-number="70"></td>
            <td id="LC70" class="blob-code blob-code-inner js-file-line">
    </td>
          </tr>
          <tr>
            <td id="L71" class="blob-num js-line-number" data-line-number="71"></td>
            <td id="LC71" class="blob-code blob-code-inner js-file-line">    })();</td>
          </tr>
    </table>
    
      <div class="BlobToolbar position-absolute js-file-line-actions dropdown js-menu-container js-select-menu d-none" aria-hidden="true">
        <button class="btn-octicon ml-0 px-2 p-0 bg-white border border-gray-dark rounded-1 dropdown-toggle js-menu-target" id="js-file-line-action-button" type="button" aria-expanded="false" aria-haspopup="true" aria-label="Inline file action toolbar" aria-controls="inline-file-actions">
          <svg aria-hidden="true" class="octicon octicon-kebab-horizontal" height="16" version="1.1" viewBox="0 0 13 16" width="13"><path fill-rule="evenodd" d="M1.5 9a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/></svg>
        </button>
        <div class="dropdown-menu-content js-menu-content" id="inline-file-actions">
          <ul class="BlobToolbar-dropdown dropdown-menu dropdown-menu-se mt-2">
            <li><a class="js-zeroclipboard dropdown-item" style="cursor:pointer;" id="js-copy-lines" data-original-text="Copy lines">Copy lines</a></li>
            <li><a class="js-zeroclipboard dropdown-item" id= "js-copy-permalink" style="cursor:pointer;" data-original-text="Copy permalink">Copy permalink</a></li>
            <li><a href="/ardiman/userChrome.js/blame/1ff7a1db68955906fc8a1272f231fa6dcba0fa30/restartfirefox/RestartFirefox.uc.js" class="dropdown-item js-update-url-with-hash" id="js-view-git-blame">View git blame</a></li>
              <li><a href="/ardiman/userChrome.js/issues/new" class="dropdown-item" id="js-new-issue">Open new issue</a></li>
          </ul>
        </div>
      </div>
    
      </div>
    
      </div>
    
      <button type="button" data-facebox="#jump-to-line" data-facebox-class="linejump" data-hotkey="l" class="d-none">Jump to Line</button>
      <div id="jump-to-line" style="display:none">
        <!-- '"` --><!-- </textarea></xmp> --></option></form><form accept-charset="UTF-8" action="" class="js-jump-to-line-form" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
          <input class="form-control linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" aria-label="Jump to line" autofocus>
          <button type="submit" class="btn">Go</button>
    </form>  </div>
    
      </div>
      <div class="modal-backdrop js-touch-events"></div>
    </div>
    
        </div>
      </div>
    
      </div>
    
          
    <div class="footer container-lg px-3" role="contentinfo">
      <div class="position-relative d-flex flex-justify-between py-6 mt-6 f6 text-gray border-top border-gray-light ">
        <ul class="list-style-none d-flex flex-wrap ">
          <li class="mr-3">&copy; 2017 <span title="0.13618s from unicorn-1259478445-8cq53">GitHub</span>, Inc.</li>
            <li class="mr-3"><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
            <li class="mr-3"><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
            <li class="mr-3"><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>
            <li class="mr-3"><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
            <li><a href="https://help.github.com" data-ga-click="Footer, go to help, text:help">Help</a></li>
        </ul>
    
        <a href="https://github.com" aria-label="Homepage" class="footer-octicon" title="GitHub">
          <svg aria-hidden="true" class="octicon octicon-mark-github" height="24" version="1.1" viewBox="0 0 16 16" width="24"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/></svg>
    </a>
        <ul class="list-style-none d-flex flex-wrap ">
            <li class="mr-3"><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact GitHub</a></li>
          <li class="mr-3"><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
          <li class="mr-3"><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
          <li class="mr-3"><a href="https://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>
            <li class="mr-3"><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
            <li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>
    
        </ul>
      </div>
    </div>
    
    
    
      <div id="ajax-error-message" class="ajax-error-message flash flash-error">
        <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"/></svg>
        <button type="button" class="flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
          <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
        </button>
        You can't perform that action at this time.
      </div>
    
    
        
        <script crossorigin="anonymous" integrity="sha256-uRW4ugvpkAjs+e9O6f1MhACWQFVvm5J2+CYtN/P1NJQ=" src="https://assets-cdn.github.com/assets/frameworks-b915b8ba0be99008ecf9ef4ee9fd4c84009640556f9b9276f8262d37f3f53494.js"></script>
        
        <script async="async" crossorigin="anonymous" integrity="sha256-T7cvrB5csNdoOf7z1E9FfViDGonRXsqL1sTj9IVBFTc=" src="https://assets-cdn.github.com/assets/github-4fb72fac1e5cb0d76839fef3d44f457d58831a89d15eca8bd6c4e3f485411537.js"></script>
        
        
        
        
      <div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner d-none">
        <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"/></svg>
        <span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
        <span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
      </div>
      <div class="facebox" id="facebox" style="display:none;">
      <div class="facebox-popup">
        <div class="facebox-content" role="dialog" aria-labelledby="facebox-header" aria-describedby="facebox-description">
        </div>
        <button type="button" class="facebox-close js-facebox-close" aria-label="Close modal">
          <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"/></svg>
        </button>
      </div>
    </div>
    
    
      </body>
    </html>
    Alles anzeigen

    Kann man das wieder hinbiegen?

  • Multirow-Tableiste mit userChrome.css anpassen für FF 89.0

    • mr.b.
    • 8. Juni 2021 um 18:59

    @20052Andreas,

    Problem mit der Tabgröße konnte ich durch Anpassung beheben. Bleibt noch das Problem mit den runden Ecken.

    Gruß


    2002Andreas,

    passt jetzt wieder alles. Die height etwas kleiner gemacht und auf 5 Zeilen gestellt.

    Nochmals besten Dank.

    Gruß

  • Multirow-Tableiste mit userChrome.css anpassen für FF 89.0

    • mr.b.
    • 8. Juni 2021 um 18:46

    2002Andreas,

    zunächst klappte das mit den runden Ecken und den Größen. dann kam ein weiteres Mini-Update (keine Versionsänderung) und danach waren die runden Ecken weg und die einzelnen Tabs zu groß, bzw. die Schrift zu klein..

    Sieh selbst:

  • Multirow-Tableiste mit userChrome.css anpassen für FF 89.0

    • mr.b.
    • 8. Juni 2021 um 18:23

    Besten Dank Andreas!

    Den Code für die runden Ecken kann ich aus meiner alten .css hineinkopieren? Dann wäre es perfekt. Allerdings kann ich auch mit dieser Lösung bestens leben.

    Gruß

  • Multirow-Tableiste mit userChrome.css anpassen für FF 89.0

    • mr.b.
    • 8. Juni 2021 um 14:37

    Hallo Krabato,

    ich gehe davon aus, dass die Ursache nicht nur an FF liegt sondern evtl. an einem modifizierten Windows. Offenbar können die Experten hier im Forum unser Problem nicht bei sich nachvollziehen, sonst hätten sie sicher längst gemeldet.

    Ich selbst hatte fast alle Fonts in Windows, die man in der Registry (Windows Metric) verändern kann, auch geändert. Erst wenn ich diese wieder zurückgesetzt habe, und diese als Ursache ausschließen kann, werde ich mich dazu noch einmal melden. In der Zwischenzeit, habe ich hilfsweise die Vorgängerversion wieder installiert.

    Gruß

  • Multirow-Tableiste mit userChrome.css anpassen für FF 89.0

    • mr.b.
    • 4. Juni 2021 um 17:27

    Zur Verdeutlichung des Problems:

  • Multirow-Tableiste mit userChrome.css anpassen für FF 89.0

    • mr.b.
    • 3. Juni 2021 um 23:01

    Hallo,

    Tableiste soll mehrzeilig und unterhalb der Adresszeile sein. Seit letztem UPdate funktioniert der Scollbalken nicht mehr, d.h. der Tabbalken bleibt immer gleich hoch.

    CSS
    /* -------------------------------------------*/
    /* Mehrzeilige Tabreihen (Abgerundete Ecken)  */
    /* -------------------------------------------*/
    /* Tab-Höhe  */
     .tabbrowser-tab {
        min-height: 28px !important;
        max-height: 28px !important;
        vertical-align: bottom !important;
        margin-top: 1px !important;
        margin-bottom: 1px !important;
    }
     /* Feste Breite  des einzelnem Tabs */
     .tabbrowser-tab:not([pinned]) {
        min-width: 150 !important; 
    }
    /* Platz für Scrollbar schaffen */
    .tabbrowser-tabs {
      margin-right: -41px !important;
    }
    tabs > arrowscrollbox { 
        display: block; 
    }
    /* Anzahl der angezeigten Tabreihen = 3 Zeilen, weitere per Scrollbar */
    box[class="scrollbox-clip"][orient="horizontal"],
    tabs > arrowscrollbox { display: block; }
    scrollbox[part][orient="horizontal"] {
        display: flex;
        flex-wrap: wrap;
        max-height: calc(var(--tab-min-height) * 5); /* Anzahl der angezeigten Tabreihen = 3 Zeilen */
        overflow-x: hidden;
        overflow-y: auto;
    }
    /* Buttons/Zwischenräume Ausblenden */
    hbox.titlebar-spacer,
    #alltabs-button,tabs tab:not([fadein]), 
    [class="scrollbutton-up"],
    [class="scrollbutton-up"] + spacer,
    scrollbox[part][orient="horizontal"] + spacer,
    [class="scrollbutton-down"] { 
        display: none; 
    }
    tabs tab {
        border-left: solid 1px hsla(0,0%,50%,.5);
        border-right: solid 1px hsla(0,0%,50%,.5);
    }
    tabs tab:after,tabs tab:before { display: none;}
    #TabsToolbar:not(:-moz-lwtheme){ 
        color: black !important;
    }
    #TabsToolbar > .titlebar-buttonbox-container {
        display: none !important;
    }   
    /* -----------------------------*/
    /* Tab: Optische Anpassungen    */
    /* -----------------------------*/
    #tabbrowser-tabs :not([fokus]){
        opacity: 2 !important;
    }
    /* Schriftart/Schriftgröße ändern */
    .tabbrowser-tab .tab-label {
        text-shadow: 1px 1px 0px #000000 !important;    
        font-weight: 500 !important;
        font-size:   12px !important;
        font-family: "Arial" !important;
        color: white !important;
    }
    .tabbrowser-tab .tab-label:not(:-moz-lwtheme) {
        text-shadow: none !important; 
        color: green !important; 
    }
    .tabbrowser-tab .tab-label[selected="true"] {
        text-shadow: 1px 1px 0px #000000 !important;
        color: yellow !important; 
        font-weight: 500 !important;
        font-size:   14px !important; 
        font-family: "Arial" !important; 
    }
    /* Tab-Line entfernen */
    #TabsToolbar .tabbrowser-tab .tab-line {
        display: none !important; 
    }
    /* Tab-Rahmen entfernen */
    #TabsToolbar .tabbrowser-tab[visuallyselected="true"],
    #TabsToolbar .tabbrowser-tab,
    #TabsToolbar .tabbrowser-tab .tab-background {
        background: unset !important;
        border-top: unset !important;
        outline: none !important;
    }
    /* Tab-Schließen-Button entfernen 
    .tabbrowser-tab .tab-close-button {
      visibility: collapse !important;
    }*/
    /* Abgerundete Ecken */
    #TabsToolbar .tabbrowser-tab,
    #TabsToolbar .tabbrowser-tab .tab-background
    {
        margin-right : -1px !important;
        background: unset;
        border-radius: 80px !important; 
        border: 1px solid rgba(0,0,0,0.1) !important;
    }
    /* Tab-Seperatoren entfernen */
    .tabbrowser-tab::after,
    .tabbrowser-tab::before {
      opacity: 1 !important;
      border-image: unset !important;
      border-image-slice: none !important;
      width: 2 !important;
    }
    /*ungelesene TAbs kursiv; ach private Tabs*/
    #main-window .tabbrowser-tab[titlechanged] {
        font-style: italic;
    }
    #main-window[privatebrowsingmode] .tabbrowser-tab[titlechanged] {
        font-style: italic;
    }
    
    /*------------------*/
    /* Tab-Hintergrund  */
    /*------------------*/
    /*--- selektiert ---*/
    .tab-background[selected=true]:not(:-moz-lwtheme) > spacer {
        background-image:  linear-gradient( rgba(103,171,224,50), rgba(10,58,95,80) ), none !important; /* blau */
        /*background-image:  linear-gradient( rgba(230,175,175,1), rgba(84,25,25,1) ),  none !important;*/  /* rot */
        filter: drop-shadow(4px 3px 2px rgba(0,0,0,0.33)) drop-shadow(-4px 3px 2px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }
    .tab-background[selected=true]:-moz-lwtheme > spacer {
        background-image:  linear-gradient( rgba(103,171,224,60), rgba(10,58,95,60) ), none !important;
        filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.33)) drop-shadow(-2px 3px 2px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }
    /*--- hover(nicht selektiert) ---*/
    .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]):not(:-moz-lwtheme) > spacer {
        background-image:  linear-gradient( rgba(255,255,255,1), rgba(115,115,115,1) ),  none !important; 
        filter: brightness(130%) contrast(95%) drop-shadow(1px 1px 1px rgba(0,0,0,0.33)) drop-shadow(-1px 1px 1px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }
    .tabbrowser-tab:hover > .tab-stack > .tab-background:not([selected=true]):-moz-lwtheme > spacer {
        background-image:  linear-gradient( rgba(225,225,225,0.66), rgba(100,125,145,0.66) ),  none !important; 
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
        border-radius: 80px !important; 
    }
    /*--- nicht selektiert ---*/
    .tab-background:not([selected=true]):not(:-moz-lwtheme) > spacer {
        background-image:  linear-gradient( rgba(255,255,255,1), rgba(125,125,125,1) ),  none !important; 
        filter: brightness(115%) contrast(90%) drop-shadow(1px 1px 1px rgba(0,0,0,0.33)) drop-shadow(-1px 1px 1px rgba(0,0,0,0.33)) !important; 
        border-radius: 80px !important; 
    }
    .tab-background:not([selected=true]):-moz-lwtheme > spacer {
        background-image:  linear-gradient( rgba(255,255,255,0.33), rgba(110,110,110,0.33) ),  none !important; 
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
        border-radius: 80px !important; 
    }
    /*--- Multi-selektiert ---*/
    .tab-background[multiselected=true]:not([selected=true]) > spacer {
        background-image:  linear-gradient( rgba(225,225,225,1), rgba(50,98,135,1) ), none !important;
        border-radius: 80px !important; 
    }
    .tabbrowser-tab:hover > .tab-stack > .tab-background[multiselected=true]:not([selected=true]) > spacer {
        background-image:  linear-gradient( rgba(225,225,225,1), rgba(50,98,135,1) ), none !important; 
        border-radius: 80px !important; 
    }    
    Alles anzeigen

    Welche Korrekturen sind notwendig?

    Danke und Gruß

  • Jede Seite fragt nach jedem Schließen aufs Neue nach Cookieerlaubnis

    • mr.b.
    • 1. April 2021 um 14:08

    Danke!

    Habe die betr. Datei gelöscht und ebenfalls den Cache2 (0,9 GB). Dann die Webseiten hinzugefügt, die Cookies setzen dürfen und das Problem tritt jetzt nur noch sproadisch auf, ist also erträglich.

    Gruß

  • Jede Seite fragt nach jedem Schließen aufs Neue nach Cookieerlaubnis

    • mr.b.
    • 31. März 2021 um 18:11

    Hallo,

    ich hatte vor einiger Zeit die Einstellungen in FF neu gemacht mit der Folge, das jedes Mal, wenn ich eine Seite aufrufe, diese nach der Cookie-Erlaubnis fragt. Schließe ich die Seite und öffne sie wieder, passiert wieder dasselbe.

    Die Einstellungen unter Datenschutz und Sicherheit stehen auf "Standard" , "Cookies und Website-Daten beim Beenden von Firefox löschen" ist deaktiviert. Inzwischen ist mein Cookie-Bestand auf 1 GB angestiegen. Was muss ich tun, damit ich nur noch bei mir unbekannten Seiten nach Cookies gefragte werde und nicht mehr bei schon einmal erlaubten Seiten dies geschieht?

    Gruß

  • Wie aus Bookmarks, Adressfenster, Suchfenster und Thunderbird im neuen Tab öffnen

    • mr.b.
    • 4. Februar 2021 um 21:04

    Besten Dank Sören!

  • Wie aus Bookmarks, Adressfenster, Suchfenster und Thunderbird im neuen Tab öffnen

    • mr.b.
    • 4. Februar 2021 um 20:26

    Hallo,

    jede aufgerufene Webseite sollte bei mir in einem neuen Tab geöffnet werden. Verschiedene Webseiten im gleichen Tab mag ich nicht.

    Außerdem sollte ein Tab möglichst im Hintergrund ausgeführt werden.

    Welche Optionen habe ich?

    Skripte oder Addons gerne.

    Gruß

  • "Focus"-Player nicht zu stoppen

    • mr.b.
    • 16. Dezember 2020 um 19:13

    "Medien mit Audio blockieren". Da ich nicht weiß, was die beiden Alternativen bewirken, etwa " Audio und Video blockieren", hatte ich das noch nicht ausprobiert. Kann ich aber gerne mal machen.

  • "Focus"-Player nicht zu stoppen

    • mr.b.
    • 16. Dezember 2020 um 17:50

    Hallo,

    ich öffne oft einige Themen von "Focus" direkt aus einem Newsletter in Thunderbird. Manchmal kommt da auch eine komplette Reihe von Tabs zusammen. Bevor ich angefangen habe die Tabs zu öffnen, wird aber oft schon ein Video abgespielt. Klicke ich dann auf einen Tabs, werden auch mal 2 Videos gleichzeitig gespielt. Wie schalte ich diese Automatik bei dem speziellen Focus-Player ab? Die Tabs zeigen außerdem kein Lautsprechersymbol um die abspielenden Seiten zu identifizieren.

    Mein Wunsch ist, immer nur ein einziges Video nach manuellem Start abspielen zu lassen um immer die Kontrolle zu haben.

    Ist das möglich?

    Gruß

  • user.js verhindert maximiertes Öffnen

    • mr.b.
    • 1. Dezember 2020 um 19:34

    Besten Dank, Sören!

    Gut, dass wir dieses Forum haben.

    Gruß

Unterstütze uns!

Jährlich (2025)

107,3 %

107,3% (697,41 von 650 EUR)

Jetzt spenden
  1. Kontakt
  2. Datenschutz
  3. Impressum
Community-Software: WoltLab Suite™
Mastodon