דילוג לתוכן
  • דף הבית
  • קטגוריות
  • פוסטים אחרונים
  • משתמשים
  • חיפוש
  • חוקי הפורום
כיווץ
תחומים

תחומים - פורום חרדי מקצועי

💡 רוצה לזכור קריאת שמע בזמן? לחץ כאן!
  1. דף הבית
  2. תכנות
  3. הוספת אתרים נוספים ב 3 נקודות של נטפרי

הוספת אתרים נוספים ב 3 נקודות של נטפרי

מתוזמן נעוץ נעול הועבר תכנות
12 פוסטים 4 כותבים 969 צפיות 5 עוקבים
  • מהישן לחדש
  • מהחדש לישן
  • הכי הרבה הצבעות
תגובה
  • תגובה כנושא
התחברו כדי לפרסם תגובה
נושא זה נמחק. רק משתמשים עם הרשאות מתאימות יוכלו לצפות בו.
  • יוסף חיים 016י יוסף חיים 016

    שלום
    יש אפשרות להוסיף ב3 נקודות של נטפרי, חוץ מפורום נטפרי, קיצורים לאתרים אחרים?
    כמו למשל תחומים?
    אני מדבר על זה97fbee4c-0b2d-4a6b-8ad9-3bb353299f6c-image.png 5265d9f6-7021-48a3-b9f8-dde27203ffb5-image.png

    תודה

    פ
    פ
    פלורידה
    כתב ב נערך לאחרונה על ידי פלורידה
    #2

    @יוסף-חיים-016

    תנסה את זה. (קוד לטמפרמונקי)

    לא אני יצרתי את זה... רק התאמתי. קרדיט @מוטי-אורן

    // ==UserScript==
    // @name         כרטסת נטפרי
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @description  Add a referral tab to other forums
    // @author       moti-oren
    // @match        https://netfree.link/*
    // @grant        none
    // ==/UserScript==
    (function() {
       'use strict';
    
        (function () {
       /*
        created by moti-oren
        Add a referral tab to other forums
       */
       let panel12 = document.createElement('div');
       let text12 = document.createElement('div');
       let linksArray12 = [
           'https://tchumim.com/',
           'https://www.prog.co.il/',
           'https://www.tora-forum.co.il/',
           'https://forum-office.ml/',
           'https://xn--9dbazrsfz.com/',
           'https://f2.freeivr.co.il/',
           'https://www.meatzvim.cf/',
           'https://www.techno-tech.cf/',
           'https://www.mitmachim.top/'
       ];
       let imagesArray12 = [
           'https://mitmachim.top/assets/uploads/files/1602702078674-tchumim.png',
           'https://mitmachim.top/assets/uploads/files/1602702061746-prog.png',
           'https://www.tora-forum.co.il/ext/tatiana5/favicon/favicon.png',
           'https://upload.wikimedia.org/wikipedia/commons/5/5f/Microsoft_Office_logo_%282019%E2%80%93present%29.svg',
           'https://mitmachim.top/assets/uploads/files/1602701994040-mk.png',
           'https://mitmachim.top/assets/uploads/files/1602704764319-%D7%99%D7%9E%D7%95%D7%AA.png',
           'https://meatzvim.cf/assets/uploads/system/favicon.ico',
           'https://techno-tech.cf//favicon.ico?v=e4jmu7vr78u',
           'https://mitmachim.top//favicon.ico?v=a54dqpiknn4'
       ];
    
       panel12.addEventListener('mouseenter', (event) => {
           panel12.style.width = '60px';
           text12.style.transform = 'scale(1, 1)';
           for (let image of document.getElementsByClassName('image12')) {
               image.style.transform = 'scale(1, 1) translate(0, 0)';
           }
       });
    
       panel12.addEventListener('mouseleave', (event) => {
           panel12.style.width = '15px';
           text12.style.transform = 'scale(0, 0)';
           for (let image of document.getElementsByClassName('image12')) {
               image.style.transform = 'scale(0, 0) translate(-40px, 0)';
           }
       });
    
       panel12.style.transition = 'width 0.5s';
       panel12.style.position = 'fixed';
       panel12.style.width = '20px';
       panel12.style.height = 'auto';
       panel12.style.left = '5px';
       panel12.style.bottom = '50%';
       panel12.style.transform = 'translate(0, 50%)';
       panel12.style.paddingTop = '12px';
       panel12.style.paddingBottom = '8px';
       panel12.style.flexDirection = 'column';
       panel12.style.alignItems = 'center';
       panel12.style.justifyContent = 'center';
       panel12.style.borderTopRightRadius = '20px';
       panel12.style.borderBottomRightRadius = '20px';
       panel12.style.backgroundColor = '#e4e8ff';
    
       text12.style.transform = 'scale(0, 0)';
       text12.style.transition = '0.5s';
       text12.style.display = 'block';
       text12.style.marginRight = 'auto';
       text12.style.marginBottom = '6px';
       text12.style.marginLeft = 'auto';
       text12.style.fontFamily = 'Varela Round, sans-serif';
       text12.style.lineHeight = '18px';
       text12.style.fontWeight = '700';
       text12.style.textAlign = 'center';
    
       text12.innerHTML = 'שווה לבקר<br>';
       panel12.appendChild(text12);
    
       for (let i in linksArray12) {
           let link = document.createElement('a');
           link.href = linksArray12[i];
           link.target = '_blank';
           let image12 = document.createElement('img');
           image12.src = imagesArray12[i];
           image12.style.display = 'block';
           image12.style.margin = 'auto';
           image12.style.width = '37px';
           image12.style.marginBottom = '15px';
           image12.style.transition = '0.5s';
           image12.classList.add('image12');
           image12.style.transform = 'scale(0, 0) translate(-40px, 0)';
           link.appendChild(image12);
           panel12.appendChild(link);
       };
    
       document.body.appendChild(panel12);
    
    })()
    
    })();
    
    
    יוסף חיים 016י צדיק תמיםצ 2 תגובות תגובה אחרונה
    1
    • פ פלורידה

      @יוסף-חיים-016

      תנסה את זה. (קוד לטמפרמונקי)

      לא אני יצרתי את זה... רק התאמתי. קרדיט @מוטי-אורן

      // ==UserScript==
      // @name         כרטסת נטפרי
      // @namespace    http://tampermonkey.net/
      // @version      0.1
      // @description  Add a referral tab to other forums
      // @author       moti-oren
      // @match        https://netfree.link/*
      // @grant        none
      // ==/UserScript==
      (function() {
         'use strict';
      
          (function () {
         /*
          created by moti-oren
          Add a referral tab to other forums
         */
         let panel12 = document.createElement('div');
         let text12 = document.createElement('div');
         let linksArray12 = [
             'https://tchumim.com/',
             'https://www.prog.co.il/',
             'https://www.tora-forum.co.il/',
             'https://forum-office.ml/',
             'https://xn--9dbazrsfz.com/',
             'https://f2.freeivr.co.il/',
             'https://www.meatzvim.cf/',
             'https://www.techno-tech.cf/',
             'https://www.mitmachim.top/'
         ];
         let imagesArray12 = [
             'https://mitmachim.top/assets/uploads/files/1602702078674-tchumim.png',
             'https://mitmachim.top/assets/uploads/files/1602702061746-prog.png',
             'https://www.tora-forum.co.il/ext/tatiana5/favicon/favicon.png',
             'https://upload.wikimedia.org/wikipedia/commons/5/5f/Microsoft_Office_logo_%282019%E2%80%93present%29.svg',
             'https://mitmachim.top/assets/uploads/files/1602701994040-mk.png',
             'https://mitmachim.top/assets/uploads/files/1602704764319-%D7%99%D7%9E%D7%95%D7%AA.png',
             'https://meatzvim.cf/assets/uploads/system/favicon.ico',
             'https://techno-tech.cf//favicon.ico?v=e4jmu7vr78u',
             'https://mitmachim.top//favicon.ico?v=a54dqpiknn4'
         ];
      
         panel12.addEventListener('mouseenter', (event) => {
             panel12.style.width = '60px';
             text12.style.transform = 'scale(1, 1)';
             for (let image of document.getElementsByClassName('image12')) {
                 image.style.transform = 'scale(1, 1) translate(0, 0)';
             }
         });
      
         panel12.addEventListener('mouseleave', (event) => {
             panel12.style.width = '15px';
             text12.style.transform = 'scale(0, 0)';
             for (let image of document.getElementsByClassName('image12')) {
                 image.style.transform = 'scale(0, 0) translate(-40px, 0)';
             }
         });
      
         panel12.style.transition = 'width 0.5s';
         panel12.style.position = 'fixed';
         panel12.style.width = '20px';
         panel12.style.height = 'auto';
         panel12.style.left = '5px';
         panel12.style.bottom = '50%';
         panel12.style.transform = 'translate(0, 50%)';
         panel12.style.paddingTop = '12px';
         panel12.style.paddingBottom = '8px';
         panel12.style.flexDirection = 'column';
         panel12.style.alignItems = 'center';
         panel12.style.justifyContent = 'center';
         panel12.style.borderTopRightRadius = '20px';
         panel12.style.borderBottomRightRadius = '20px';
         panel12.style.backgroundColor = '#e4e8ff';
      
         text12.style.transform = 'scale(0, 0)';
         text12.style.transition = '0.5s';
         text12.style.display = 'block';
         text12.style.marginRight = 'auto';
         text12.style.marginBottom = '6px';
         text12.style.marginLeft = 'auto';
         text12.style.fontFamily = 'Varela Round, sans-serif';
         text12.style.lineHeight = '18px';
         text12.style.fontWeight = '700';
         text12.style.textAlign = 'center';
      
         text12.innerHTML = 'שווה לבקר<br>';
         panel12.appendChild(text12);
      
         for (let i in linksArray12) {
             let link = document.createElement('a');
             link.href = linksArray12[i];
             link.target = '_blank';
             let image12 = document.createElement('img');
             image12.src = imagesArray12[i];
             image12.style.display = 'block';
             image12.style.margin = 'auto';
             image12.style.width = '37px';
             image12.style.marginBottom = '15px';
             image12.style.transition = '0.5s';
             image12.classList.add('image12');
             image12.style.transform = 'scale(0, 0) translate(-40px, 0)';
             link.appendChild(image12);
             panel12.appendChild(link);
         };
      
         document.body.appendChild(panel12);
      
      })()
      
      })();
      
      
      יוסף חיים 016י
      יוסף חיים 016י
      יוסף חיים 016
      כתב ב נערך לאחרונה על ידי
      #3

      @פלורידה אמר בהוספת אתרים נוספים ב 3 נקודות של נטפרי:

      @יוסף-חיים-016

      תנסה את זה. (קוד לטמפרמונקי)

      לא אני יצרתי את זה... רק התאמתי. קרדיט @מוטי-אורן

      // ==UserScript==
      // @name         כרטסת נטפרי
      // @namespace    http://tampermonkey.net/
      // @version      0.1
      // @description  Add a referral tab to other forums
      // @author       moti-oren
      // @match        https://netfree.link/*
      // @grant        none
      // ==/UserScript==
      (function() {
         'use strict';
      
          (function () {
         /*
          created by moti-oren
          Add a referral tab to other forums
         */
         let panel12 = document.createElement('div');
         let text12 = document.createElement('div');
         let linksArray12 = [
             'https://tchumim.com/',
             'https://www.prog.co.il/',
             'https://www.tora-forum.co.il/',
             'https://forum-office.ml/',
             'https://xn--9dbazrsfz.com/',
             'https://f2.freeivr.co.il/',
             'https://www.meatzvim.cf/',
             'https://www.techno-tech.cf/',
             'https://www.mitmachim.top/'
         ];
         let imagesArray12 = [
             'https://mitmachim.top/assets/uploads/files/1602702078674-tchumim.png',
             'https://mitmachim.top/assets/uploads/files/1602702061746-prog.png',
             'https://www.tora-forum.co.il/ext/tatiana5/favicon/favicon.png',
             'https://upload.wikimedia.org/wikipedia/commons/5/5f/Microsoft_Office_logo_%282019%E2%80%93present%29.svg',
             'https://mitmachim.top/assets/uploads/files/1602701994040-mk.png',
             'https://mitmachim.top/assets/uploads/files/1602704764319-%D7%99%D7%9E%D7%95%D7%AA.png',
             'https://meatzvim.cf/assets/uploads/system/favicon.ico',
             'https://techno-tech.cf//favicon.ico?v=e4jmu7vr78u',
             'https://mitmachim.top//favicon.ico?v=a54dqpiknn4'
         ];
      
         panel12.addEventListener('mouseenter', (event) => {
             panel12.style.width = '60px';
             text12.style.transform = 'scale(1, 1)';
             for (let image of document.getElementsByClassName('image12')) {
                 image.style.transform = 'scale(1, 1) translate(0, 0)';
             }
         });
      
         panel12.addEventListener('mouseleave', (event) => {
             panel12.style.width = '15px';
             text12.style.transform = 'scale(0, 0)';
             for (let image of document.getElementsByClassName('image12')) {
                 image.style.transform = 'scale(0, 0) translate(-40px, 0)';
             }
         });
      
         panel12.style.transition = 'width 0.5s';
         panel12.style.position = 'fixed';
         panel12.style.width = '20px';
         panel12.style.height = 'auto';
         panel12.style.left = '5px';
         panel12.style.bottom = '50%';
         panel12.style.transform = 'translate(0, 50%)';
         panel12.style.paddingTop = '12px';
         panel12.style.paddingBottom = '8px';
         panel12.style.flexDirection = 'column';
         panel12.style.alignItems = 'center';
         panel12.style.justifyContent = 'center';
         panel12.style.borderTopRightRadius = '20px';
         panel12.style.borderBottomRightRadius = '20px';
         panel12.style.backgroundColor = '#e4e8ff';
      
         text12.style.transform = 'scale(0, 0)';
         text12.style.transition = '0.5s';
         text12.style.display = 'block';
         text12.style.marginRight = 'auto';
         text12.style.marginBottom = '6px';
         text12.style.marginLeft = 'auto';
         text12.style.fontFamily = 'Varela Round, sans-serif';
         text12.style.lineHeight = '18px';
         text12.style.fontWeight = '700';
         text12.style.textAlign = 'center';
      
         text12.innerHTML = 'שווה לבקר<br>';
         panel12.appendChild(text12);
      
         for (let i in linksArray12) {
             let link = document.createElement('a');
             link.href = linksArray12[i];
             link.target = '_blank';
             let image12 = document.createElement('img');
             image12.src = imagesArray12[i];
             image12.style.display = 'block';
             image12.style.margin = 'auto';
             image12.style.width = '37px';
             image12.style.marginBottom = '15px';
             image12.style.transition = '0.5s';
             image12.classList.add('image12');
             image12.style.transform = 'scale(0, 0) translate(-40px, 0)';
             link.appendChild(image12);
             panel12.appendChild(link);
         };
      
         document.body.appendChild(panel12);
      
      })()
      
      })();
      
      

      איך אני מוסיף את זה

      פ תגובה 1 תגובה אחרונה
      0
      • יוסף חיים 016י יוסף חיים 016

        @פלורידה אמר בהוספת אתרים נוספים ב 3 נקודות של נטפרי:

        @יוסף-חיים-016

        תנסה את זה. (קוד לטמפרמונקי)

        לא אני יצרתי את זה... רק התאמתי. קרדיט @מוטי-אורן

        // ==UserScript==
        // @name         כרטסת נטפרי
        // @namespace    http://tampermonkey.net/
        // @version      0.1
        // @description  Add a referral tab to other forums
        // @author       moti-oren
        // @match        https://netfree.link/*
        // @grant        none
        // ==/UserScript==
        (function() {
           'use strict';
        
            (function () {
           /*
            created by moti-oren
            Add a referral tab to other forums
           */
           let panel12 = document.createElement('div');
           let text12 = document.createElement('div');
           let linksArray12 = [
               'https://tchumim.com/',
               'https://www.prog.co.il/',
               'https://www.tora-forum.co.il/',
               'https://forum-office.ml/',
               'https://xn--9dbazrsfz.com/',
               'https://f2.freeivr.co.il/',
               'https://www.meatzvim.cf/',
               'https://www.techno-tech.cf/',
               'https://www.mitmachim.top/'
           ];
           let imagesArray12 = [
               'https://mitmachim.top/assets/uploads/files/1602702078674-tchumim.png',
               'https://mitmachim.top/assets/uploads/files/1602702061746-prog.png',
               'https://www.tora-forum.co.il/ext/tatiana5/favicon/favicon.png',
               'https://upload.wikimedia.org/wikipedia/commons/5/5f/Microsoft_Office_logo_%282019%E2%80%93present%29.svg',
               'https://mitmachim.top/assets/uploads/files/1602701994040-mk.png',
               'https://mitmachim.top/assets/uploads/files/1602704764319-%D7%99%D7%9E%D7%95%D7%AA.png',
               'https://meatzvim.cf/assets/uploads/system/favicon.ico',
               'https://techno-tech.cf//favicon.ico?v=e4jmu7vr78u',
               'https://mitmachim.top//favicon.ico?v=a54dqpiknn4'
           ];
        
           panel12.addEventListener('mouseenter', (event) => {
               panel12.style.width = '60px';
               text12.style.transform = 'scale(1, 1)';
               for (let image of document.getElementsByClassName('image12')) {
                   image.style.transform = 'scale(1, 1) translate(0, 0)';
               }
           });
        
           panel12.addEventListener('mouseleave', (event) => {
               panel12.style.width = '15px';
               text12.style.transform = 'scale(0, 0)';
               for (let image of document.getElementsByClassName('image12')) {
                   image.style.transform = 'scale(0, 0) translate(-40px, 0)';
               }
           });
        
           panel12.style.transition = 'width 0.5s';
           panel12.style.position = 'fixed';
           panel12.style.width = '20px';
           panel12.style.height = 'auto';
           panel12.style.left = '5px';
           panel12.style.bottom = '50%';
           panel12.style.transform = 'translate(0, 50%)';
           panel12.style.paddingTop = '12px';
           panel12.style.paddingBottom = '8px';
           panel12.style.flexDirection = 'column';
           panel12.style.alignItems = 'center';
           panel12.style.justifyContent = 'center';
           panel12.style.borderTopRightRadius = '20px';
           panel12.style.borderBottomRightRadius = '20px';
           panel12.style.backgroundColor = '#e4e8ff';
        
           text12.style.transform = 'scale(0, 0)';
           text12.style.transition = '0.5s';
           text12.style.display = 'block';
           text12.style.marginRight = 'auto';
           text12.style.marginBottom = '6px';
           text12.style.marginLeft = 'auto';
           text12.style.fontFamily = 'Varela Round, sans-serif';
           text12.style.lineHeight = '18px';
           text12.style.fontWeight = '700';
           text12.style.textAlign = 'center';
        
           text12.innerHTML = 'שווה לבקר<br>';
           panel12.appendChild(text12);
        
           for (let i in linksArray12) {
               let link = document.createElement('a');
               link.href = linksArray12[i];
               link.target = '_blank';
               let image12 = document.createElement('img');
               image12.src = imagesArray12[i];
               image12.style.display = 'block';
               image12.style.margin = 'auto';
               image12.style.width = '37px';
               image12.style.marginBottom = '15px';
               image12.style.transition = '0.5s';
               image12.classList.add('image12');
               image12.style.transform = 'scale(0, 0) translate(-40px, 0)';
               link.appendChild(image12);
               panel12.appendChild(link);
           };
        
           document.body.appendChild(panel12);
        
        })()
        
        })();
        
        

        איך אני מוסיף את זה

        פ
        פ
        פלורידה
        כתב ב נערך לאחרונה על ידי פלורידה
        #4

        @יוסף-חיים-016 יש לך טמפרמונקי?
        אם כן אתה צריך ליצור סקריפט חדש למחוק הכל ולהכניס את הקוד שם. אחר כך save

        תגובה 1 תגובה אחרונה
        0
        • פ פלורידה

          @יוסף-חיים-016

          תנסה את זה. (קוד לטמפרמונקי)

          לא אני יצרתי את זה... רק התאמתי. קרדיט @מוטי-אורן

          // ==UserScript==
          // @name         כרטסת נטפרי
          // @namespace    http://tampermonkey.net/
          // @version      0.1
          // @description  Add a referral tab to other forums
          // @author       moti-oren
          // @match        https://netfree.link/*
          // @grant        none
          // ==/UserScript==
          (function() {
             'use strict';
          
              (function () {
             /*
              created by moti-oren
              Add a referral tab to other forums
             */
             let panel12 = document.createElement('div');
             let text12 = document.createElement('div');
             let linksArray12 = [
                 'https://tchumim.com/',
                 'https://www.prog.co.il/',
                 'https://www.tora-forum.co.il/',
                 'https://forum-office.ml/',
                 'https://xn--9dbazrsfz.com/',
                 'https://f2.freeivr.co.il/',
                 'https://www.meatzvim.cf/',
                 'https://www.techno-tech.cf/',
                 'https://www.mitmachim.top/'
             ];
             let imagesArray12 = [
                 'https://mitmachim.top/assets/uploads/files/1602702078674-tchumim.png',
                 'https://mitmachim.top/assets/uploads/files/1602702061746-prog.png',
                 'https://www.tora-forum.co.il/ext/tatiana5/favicon/favicon.png',
                 'https://upload.wikimedia.org/wikipedia/commons/5/5f/Microsoft_Office_logo_%282019%E2%80%93present%29.svg',
                 'https://mitmachim.top/assets/uploads/files/1602701994040-mk.png',
                 'https://mitmachim.top/assets/uploads/files/1602704764319-%D7%99%D7%9E%D7%95%D7%AA.png',
                 'https://meatzvim.cf/assets/uploads/system/favicon.ico',
                 'https://techno-tech.cf//favicon.ico?v=e4jmu7vr78u',
                 'https://mitmachim.top//favicon.ico?v=a54dqpiknn4'
             ];
          
             panel12.addEventListener('mouseenter', (event) => {
                 panel12.style.width = '60px';
                 text12.style.transform = 'scale(1, 1)';
                 for (let image of document.getElementsByClassName('image12')) {
                     image.style.transform = 'scale(1, 1) translate(0, 0)';
                 }
             });
          
             panel12.addEventListener('mouseleave', (event) => {
                 panel12.style.width = '15px';
                 text12.style.transform = 'scale(0, 0)';
                 for (let image of document.getElementsByClassName('image12')) {
                     image.style.transform = 'scale(0, 0) translate(-40px, 0)';
                 }
             });
          
             panel12.style.transition = 'width 0.5s';
             panel12.style.position = 'fixed';
             panel12.style.width = '20px';
             panel12.style.height = 'auto';
             panel12.style.left = '5px';
             panel12.style.bottom = '50%';
             panel12.style.transform = 'translate(0, 50%)';
             panel12.style.paddingTop = '12px';
             panel12.style.paddingBottom = '8px';
             panel12.style.flexDirection = 'column';
             panel12.style.alignItems = 'center';
             panel12.style.justifyContent = 'center';
             panel12.style.borderTopRightRadius = '20px';
             panel12.style.borderBottomRightRadius = '20px';
             panel12.style.backgroundColor = '#e4e8ff';
          
             text12.style.transform = 'scale(0, 0)';
             text12.style.transition = '0.5s';
             text12.style.display = 'block';
             text12.style.marginRight = 'auto';
             text12.style.marginBottom = '6px';
             text12.style.marginLeft = 'auto';
             text12.style.fontFamily = 'Varela Round, sans-serif';
             text12.style.lineHeight = '18px';
             text12.style.fontWeight = '700';
             text12.style.textAlign = 'center';
          
             text12.innerHTML = 'שווה לבקר<br>';
             panel12.appendChild(text12);
          
             for (let i in linksArray12) {
                 let link = document.createElement('a');
                 link.href = linksArray12[i];
                 link.target = '_blank';
                 let image12 = document.createElement('img');
                 image12.src = imagesArray12[i];
                 image12.style.display = 'block';
                 image12.style.margin = 'auto';
                 image12.style.width = '37px';
                 image12.style.marginBottom = '15px';
                 image12.style.transition = '0.5s';
                 image12.classList.add('image12');
                 image12.style.transform = 'scale(0, 0) translate(-40px, 0)';
                 link.appendChild(image12);
                 panel12.appendChild(link);
             };
          
             document.body.appendChild(panel12);
          
          })()
          
          })();
          
          
          צדיק תמיםצ
          צדיק תמיםצ
          צדיק תמים
          כתב ב נערך לאחרונה על ידי
          #5

          @פלורידה למה זה לא עובד לי? הסקריפט מופעל בתוסף:
          e048cc57-4d30-4757-ab09-d2429831297a-image.png

          Don’t comment bad code — rewrite it." — Brian W. Kernighan and P. J. Plaugher"
          טיפים

          פ תגובה 1 תגובה אחרונה
          1
          • צדיק תמיםצ צדיק תמים

            @פלורידה למה זה לא עובד לי? הסקריפט מופעל בתוסף:
            e048cc57-4d30-4757-ab09-d2429831297a-image.png

            פ
            פ
            פלורידה
            כתב ב נערך לאחרונה על ידי
            #6

            @צדיק-תמים תרענן
            זה נמצא בתוך הכרטסת

            8e7e9d69-cc69-4a25-abfd-09d6568a75eb-image.png

            הללוהוה תגובה 1 תגובה אחרונה
            2
            • פ פלורידה

              @צדיק-תמים תרענן
              זה נמצא בתוך הכרטסת

              8e7e9d69-cc69-4a25-abfd-09d6568a75eb-image.png

              הללוהוה
              הללוהוה
              הללוהו
              כתב ב נערך לאחרונה על ידי
              #7

              @פלורידה איפה מכניסים את הקוד?
              מתחברים ומוסיפים טמפמונקי. ועכשיו איפה מכניסים את הסקריפט?

              פ תגובה 1 תגובה אחרונה
              1
              • הללוהוה הללוהו

                @פלורידה איפה מכניסים את הקוד?
                מתחברים ומוסיפים טמפמונקי. ועכשיו איפה מכניסים את הסקריפט?

                פ
                פ
                פלורידה
                כתב ב נערך לאחרונה על ידי
                #8

                @הללוהו
                0d051535-090c-4dce-9fd2-a4e5882cb5fc-image.png

                אחר כך צריך למחוק את הכל ולהכניס את הקוד פנימה.
                ולרענן...

                הללוהוה תגובה 1 תגובה אחרונה
                2
                • פ פלורידה

                  @הללוהו
                  0d051535-090c-4dce-9fd2-a4e5882cb5fc-image.png

                  אחר כך צריך למחוק את הכל ולהכניס את הקוד פנימה.
                  ולרענן...

                  הללוהוה
                  הללוהוה
                  הללוהו
                  כתב ב נערך לאחרונה על ידי
                  #9

                  @פלורידה לא הבנתי איפה אני מגיע בכלל למקום כזה?
                  בקישור שלמעלה לוחצים ומתקינים את התוסף שבקישור ? ומה הלאה?..

                  פ תגובה 1 תגובה אחרונה
                  1
                  • הללוהוה הללוהו

                    @פלורידה לא הבנתי איפה אני מגיע בכלל למקום כזה?
                    בקישור שלמעלה לוחצים ומתקינים את התוסף שבקישור ? ומה הלאה?..

                    פ
                    פ
                    פלורידה
                    כתב ב נערך לאחרונה על ידי
                    #10

                    @הללוהו
                    עי' כאן להבין איך מתקינים את התוסף.

                    הללוהוה תגובה 1 תגובה אחרונה
                    2
                    • פ פלורידה

                      @הללוהו
                      עי' כאן להבין איך מתקינים את התוסף.

                      הללוהוה
                      הללוהוה
                      הללוהו
                      כתב ב נערך לאחרונה על ידי הללוהו
                      #11

                      @פלורידה ואיפה מופיע לי התוסף הזה עם כל האפשרויות (עשיתי כנ"ל ולא מוצא כזה לחצן? איפה אני אמור למצוא אותה?)?

                      צדיק תמיםצ תגובה 1 תגובה אחרונה
                      0
                      • הללוהוה הללוהו

                        @פלורידה ואיפה מופיע לי התוסף הזה עם כל האפשרויות (עשיתי כנ"ל ולא מוצא כזה לחצן? איפה אני אמור למצוא אותה?)?

                        צדיק תמיםצ
                        צדיק תמיםצ
                        צדיק תמים
                        כתב ב נערך לאחרונה על ידי
                        #12

                        @הללוהו בתוספים של כרום
                        תנסה לחפש אותו פה

                        chrome://extensions
                        

                        (להעתיק ולהתדביק בכרום למעלה)
                        ואז פרטים>אפשרויות של תוספים
                        בהצלחה!

                        Don’t comment bad code — rewrite it." — Brian W. Kernighan and P. J. Plaugher"
                        טיפים

                        תגובה 1 תגובה אחרונה
                        3

                        שלום! נראה שהשיחה הזו מעניינת אותך, אבל עדיין אין לך חשבון.

                        נמאס לכם לגלול בין אותם הפוסטים בכל ביקור? כשנרשמים לחשבון, תמיד תחזרו בדיוק למקום שבו הייתם קודם, ותוכלו לבחור לקבל התראות על תגובות חדשות (בין אם במייל, ובין אם בהתראת פוש). תוכלו גם לשמור סימניות ולפרגן ב-upvote לפוסטים כדי להביע הערכה לחברי קהילה אחרים.

                        בעזרת התרומה שלך, הפוסט הזה יכול להיות אפילו טוב יותר 💗

                        הרשמה התחברות
                        תגובה
                        • תגובה כנושא
                        התחברו כדי לפרסם תגובה
                        • מהישן לחדש
                        • מהחדש לישן
                        • הכי הרבה הצבעות


                        בא תתחבר לדף היומי!
                        • התחברות

                        • אין לך חשבון עדיין? הרשמה

                        • התחברו או הירשמו כדי לחפש.
                        • פוסט ראשון
                          פוסט אחרון
                        0
                        • דף הבית
                        • קטגוריות
                        • פוסטים אחרונים
                        • משתמשים
                        • חיפוש
                        • חוקי הפורום