Skip to main content

Amazing Google Chrome Extension Tool

 
Faster away to select and copy from text Videos & Images

Amazing Google Chrome Extension Tool


                                     Photo by Nathana Rebouças on Unsplash


Hello Everyone, you will be amazed at what you can do with the BlackBox Google Chrome extension tool. Let’s see how gonna it will help.

First, you add the Blackbox Chrome Extension tool. Click the Add to Chrome Button.


After you add this tool, you can see BlackBox Tool on the top bar.


if you don’t have to see BlackBox Tool on the bar, you can see it in the Google Chrome extension section. after that click the pin icon.

you will have the ability to click this extension, Select a text inside a video. after that copy it and you can paste it into a text editor. see this video



This is an amazing extension that selects and copies text from anything.

Popular posts from this blog

How Object Behave?

  How Object Behave? Photo by Ellen Qin on  Unsplash Hello everyone, In This article, you will learn about how the state and how to relate to one another. We know about objects and variables. I give you a small reminder class that describes what an object knows and what an object does. A class is not an object. The object is used to create a class. It tells the JVM how to make an object of that particular type. Each object made from that class can have a value for the instance variable. Bates and Sierra, 2005 if you want to remind read my article first. links are here - A Trip to Objects and Classes , Know your Variables . It will help you. you already know that every object of that type can have a different instance variable. what about the method? Can objects of that type have different method behaviour? Every instance of a class has the same methods, but depending on the value of the instance variables, the methods can behave differently. Look at this example. Do...

The basics you need to know about Java Programming Language

  JAVA- Beginners need to know The basics you need to know about Java Programming Language Hello everyone, you are new to Java, This article is for you. This article great place to start learning JAVA. Let’s start What is the JAVA? Java is a Programming Language and platform-independent. It’s friendly syntax, object-oriented and has strong memory management and portability. The history of Java is very interesting. Read the history of Java by following the Link Click here —  History of Java . Platform : Any hardware or software environment in which a program runs is known as a platform. Java code can run on a variety of platforms, such as Windows, Linux, Sun Solaris, Mac OS, and others. You can understand more about it. Let’s see H ow the way Java Works Step 1 : Create a source code file. (with the .java extension) Source code means to hold on to class definition. class represent a piece of the program. the class has one or more methods. for example, In the student clas...

you better understand Java primitives and references

  Know Your Variables you better understand Java primitives and references Hello everyone, Today you will learn about what is primitives and references. Variables The variable is container holds the value while the Java program is executed. you have used variables in two places. The first one is the instance variable other one is the local variable. Later we will use variables as an argument and as a return type. you have seen the variable declare as a primitive type. Declaring the Variable Let’s see how to declare the variable. Variable must have the type and the name. Don’t mess up. you will understand it while you reading the article till the end. Let’s see what is the Primitive Datatypes The different sizes and values that can be stored in the variable are defined by data types. Data types have two types. primitive data types — These include boolean, char, byte, short, int, long, float and double. non-primitive data types — These include Classes, Interfaces, and Arrays. Data Ty...