mirror of
https://gitflic.ru/project/photopea-v2/photopea-v-2.git
synced 2025-07-01 18:35:33 +00:00
Updated, removed Google Analytics, and fixed importing pictures by URL
This commit is contained in:
parent
40c16b769f
commit
3108bca989
18
Updater.py
18
Updater.py
@ -50,6 +50,7 @@ for url in urls:
|
||||
db_data = open(root + "code/dbs/DBS.js").read()
|
||||
db_vars = re.findall(r"var (\w+)\s*=\s*(\{[\w\W]+?\n\s*\})\s*(?=;|/\*|var)", db_data)
|
||||
db = {}
|
||||
|
||||
for varname, vardata in db_vars:
|
||||
print(varname)
|
||||
try:
|
||||
@ -108,11 +109,18 @@ fonts_local=glob.glob(root + 'rsrc/fonts/'+'/**/*.{otf,ttf,ttc}', recursive=True
|
||||
for font_file in list(set(fonts_local)-set(fonts_db)):
|
||||
os.remove(font_file)
|
||||
|
||||
def find_and_replace(file,find,replace):
|
||||
with open(file,'r') as pp:
|
||||
file1=pp.read()
|
||||
file1=file1.replace(find,replace)
|
||||
with open(file,'w') as pp:
|
||||
pp.write(file1)
|
||||
|
||||
#Allow any port to be used
|
||||
with open(root+'/code/pp/pp.js','r') as pp:
|
||||
file= pp.read()
|
||||
find_and_replace(root+'/code/pp/pp.js','8887','')
|
||||
|
||||
file= file.replace('8887','')
|
||||
#Don't load Google Analytics
|
||||
find_and_replace(root+'/index.html','//www.google-analytics.com/analytics.js','')
|
||||
|
||||
with open(root+'/code/pp/pp.js','w') as pp:
|
||||
pp.write(file)
|
||||
#Allow the import of pictures of URLs (bypassing mirror.php)
|
||||
find_and_replace(root+'/code/pp/pp.js','"mirror.php?url="+encodeURIComponent','')
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,77 +1,77 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0" />
|
||||
<meta name="thumbnail" content="https://www.photopea.com/promo/screens/scr5.png" />
|
||||
<meta name="theme-color" content="#474747">
|
||||
|
||||
<title>Photopea | Online Photo Editor</title>
|
||||
|
||||
<link rel="apple-touch-icon" href="promo/icon512.png">
|
||||
<link rel="icon" sizes="256x256" href="promo/thumb256.png">
|
||||
<link rel="image_src" type="image/png" href="promo/thumb256.png" />
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="chrome-webstore-item" href="//chrome.google.com/webstore/detail/fmophgdjdipcbfjiopifpngdjmemonko">
|
||||
|
||||
<meta name="description" content="Photopea Online Photo Editor lets you edit photos, apply effects, filters, add text, crop or resize pictures. Do Online Photo Editing in your browser for free!" />
|
||||
|
||||
<link rel="stylesheet" href="style/all.css" />
|
||||
|
||||
<style>
|
||||
#cap {
|
||||
font-size: 1.3em;
|
||||
padding:2% 2% 1em 2%; background-color: #0f171d; /*background-image: linear-gradient(rgb(20, 20, 22), rgb(40,40,45));*/
|
||||
color:#e6e6e6; text-align:center;
|
||||
/*position:absolute; z-index:10; margin:1em; border-radius: 1em;*/
|
||||
}
|
||||
#cap a { color:inherit; font-weight:bold; }
|
||||
#cap p { margin-bottom:1.5em; line-height:1.5em; }
|
||||
h1 { font-size: 2.3em; margin:0.5em 0; letter-spacing: 0em; line-height:1.2em; }
|
||||
strong { display:inline-block; font-size: 1.1em; background:rgba(0,0,0,0.1); padding:0.1em 0.5em;
|
||||
margin: 0.2em 0.5em 0.2em 0; border-radius:0.3em; font-weight:normal; line-height:1.7}
|
||||
</style>
|
||||
<script>
|
||||
function showCap() {_showCap(true);} function hideCap() {_showCap(false);}
|
||||
function _showCap(vis){
|
||||
document.getElementById("cap").setAttribute("style", vis?"":"display:none;");
|
||||
localStorage.setItem("capShown", ""+vis);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="theme0">
|
||||
<!---->
|
||||
<div id="cap">
|
||||
<span style="position:absolute;right:0;top:0;font-size:7em;margin:0 0.2em;cursor:pointer;" onclick="hideCap()">✕</span>
|
||||
<img style="width:8em; height:8em; margin-top:1em;" src="promo/thumb256.png" alt="Photopea logo" />
|
||||
<h1>Photopea: advanced photo editor</h1>
|
||||
<p style="font-size:1.3em">Free online photo editor supporting <b>PSD</b>, <b>XCF</b>, <b>Sketch</b>, <b>XD</b> and <b>CDR</b> formats.
|
||||
(<b>Adobe Photoshop</b>, <b>GIMP</b>, <b>Sketch App</b>, <b>Adobe XD</b> and <b>CorelDRAW</b>).</p>
|
||||
<p>Create a new image or open existing files from your computer. Save your work as PSD
|
||||
(File - Save as PSD) or as JPG / PNG / SVG (File - Export). Suggest new features at our
|
||||
<a href="//github.com/photopea/photopea/issues" target="_blank">GitHub</a> or <a href="//www.facebook.com/photopea/" target="_blank">Facebook</a>.
|
||||
Our goal is to create <a href="https://blog.photopea.com/introduction.html" target="_blank">the most advanced and affordable photo editor</a>.</p>
|
||||
<span><!--<a href="mailto:support@photopea.com">-->support@photopea.com<!--</a>--> | Reddit: <a target="_blank" href="//www.reddit.com/r/photopea/">/r/Photopea</a></span>
|
||||
</div>
|
||||
<!---->
|
||||
|
||||
<script>if(localStorage.getItem("capShown")=="false" || window.self != window.top) hideCap();</script>
|
||||
|
||||
<script src="code/ext/ext.js"></script>
|
||||
<script src="code/dbs/DBS.js"></script>
|
||||
<script src="code/pp/pp.js"></script>
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||
ga('create', 'UA-4249565-37', 'photopea.com');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0" />
|
||||
<meta name="thumbnail" content="https://www.photopea.com/promo/screens/scr5.png" />
|
||||
<meta name="theme-color" content="#474747">
|
||||
|
||||
<title>Photopea | Online Photo Editor</title>
|
||||
|
||||
<link rel="apple-touch-icon" href="promo/icon512.png">
|
||||
<link rel="icon" sizes="256x256" href="promo/thumb256.png">
|
||||
<link rel="image_src" type="image/png" href="promo/thumb256.png" />
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<link rel="chrome-webstore-item" href="//chrome.google.com/webstore/detail/fmophgdjdipcbfjiopifpngdjmemonko">
|
||||
|
||||
<meta name="description" content="Photopea Online Photo Editor lets you edit photos, apply effects, filters, add text, crop or resize pictures. Do Online Photo Editing in your browser for free!" />
|
||||
|
||||
<link rel="stylesheet" href="style/all.css" />
|
||||
|
||||
<style>
|
||||
#cap {
|
||||
font-size: 1.3em;
|
||||
padding:2% 2% 1em 2%; background-color: #0f171d; /*background-image: linear-gradient(rgb(20, 20, 22), rgb(40,40,45));*/
|
||||
color:#e6e6e6; text-align:center;
|
||||
/*position:absolute; z-index:10; margin:1em; border-radius: 1em;*/
|
||||
}
|
||||
#cap a { color:inherit; font-weight:bold; }
|
||||
#cap p { margin-bottom:1.5em; line-height:1.5em; }
|
||||
h1 { font-size: 2.3em; margin:0.5em 0; letter-spacing: 0em; line-height:1.2em; }
|
||||
strong { display:inline-block; font-size: 1.1em; background:rgba(0,0,0,0.1); padding:0.1em 0.5em;
|
||||
margin: 0.2em 0.5em 0.2em 0; border-radius:0.3em; font-weight:normal; line-height:1.7}
|
||||
</style>
|
||||
<script>
|
||||
function showCap() {_showCap(true);} function hideCap() {_showCap(false);}
|
||||
function _showCap(vis){
|
||||
document.getElementById("cap").setAttribute("style", vis?"":"display:none;");
|
||||
localStorage.setItem("capShown", ""+vis);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="theme0">
|
||||
<!---->
|
||||
<div id="cap">
|
||||
<span style="position:absolute;right:0;top:0;font-size:7em;margin:0 0.2em;cursor:pointer;" onclick="hideCap()">✕</span>
|
||||
<img style="width:8em; height:8em; margin-top:1em;" src="promo/thumb256.png" alt="Photopea logo" />
|
||||
<h1>Photopea: advanced photo editor</h1>
|
||||
<p style="font-size:1.3em">Free online photo editor supporting <b>PSD</b>, <b>XCF</b>, <b>Sketch</b>, <b>XD</b> and <b>CDR</b> formats.
|
||||
(<b>Adobe Photoshop</b>, <b>GIMP</b>, <b>Sketch App</b>, <b>Adobe XD</b> and <b>CorelDRAW</b>).</p>
|
||||
<p>Create a new image or open existing files from your computer. Save your work as PSD
|
||||
(File - Save as PSD) or as JPG / PNG / SVG (File - Export). Suggest new features at our
|
||||
<a href="//github.com/photopea/photopea/issues" target="_blank">GitHub</a> or <a href="//www.facebook.com/photopea/" target="_blank">Facebook</a>.
|
||||
Our goal is to create <a href="https://blog.photopea.com/introduction.html" target="_blank">the most advanced and affordable photo editor</a>.</p>
|
||||
<span><!--<a href="mailto:support@photopea.com">-->support@photopea.com<!--</a>--> | Reddit: <a target="_blank" href="//www.reddit.com/r/photopea/">/r/Photopea</a></span>
|
||||
</div>
|
||||
<!---->
|
||||
|
||||
<script>if(localStorage.getItem("capShown")=="false" || window.self != window.top) hideCap();</script>
|
||||
|
||||
<script src="code/ext/ext.js"></script>
|
||||
<script src="code/dbs/DBS.js"></script>
|
||||
<script src="code/pp/pp.js"></script>
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','','ga');
|
||||
ga('create', 'UA-4249565-37', 'photopea.com');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -20,284 +20,328 @@
|
||||
"c50":"Presentations",
|
||||
"c60":"Other"
|
||||
},
|
||||
"authors" : [[1, "Ivan Kuckir"], [30889, "Michal Krzywania"], [186404, "MonstyrSlayr (MonstyrSlayr)"], [205931, "Kickass Tuber"], [206182, "hxim"], [206910, "Yikuan Sun"], [208253, "UnBest"], [210704, "mostafa mohamed"], [218023, "Cameron CAMBIT"], [220423, "Logan Weir"], [233072, "stoney"], [240087, "Jessica Paton"], [279052, "Maren Ortega Arlegui"], [283073, "food"], [289060, "Cal CoachesFX"], [308527, "CryptoBanker"], [321474, "القافة Agave"], [324863, "Aprameyan R"], [340495, "Games Bulletin"], [368079, "GaleFight"], [368363, "Gareth Edwards"], [393362, "Joinability"], [401270, "『༺dabcatz༻』"], [406586, "babydej"], [413192, "Ahmed Lloyd"], [414679, "Ariel Bristol"], [416002, "Carlite"], [418938, "avengedarmy"], [427446, "musa"], [433962, "snipexX Krunker"], [438548, "kixxu"], [457393, "0_gpl Studio"], [458757, "Doodle's Playground"], [461391, "Benjamin Tryfon"], [461391, "Benjamin Tryfon"], [462430, "AtmajyotiBasu7ERoll 7. TamoghnaBasu6CRoll 5."], [463954, "Oscar (OsCat)"], [471253, "Renata Alexandre"], [475463, "Luke Palios"], [476699, "Alexander Dvametry"], [479302, "Mark Anon"], [484724, "Jude Mitchell"], [485170, "Sahiwal Media"], [488986, "Faria Akter"], [488992, "Shamsul Arefin Khan Shams"], [489615, "Gideon Bispo"], [489375, "The Lifebringer"], [492066, "Numerous"], [492113, "Noka"], [492123, "Lucia Brander"], [493100, "Alberto Hernandez"], [493851, "Binyamin Szwarcfiter"], [494208, "Laura H.-C."], [498427, "—m."], [498694, "Senin İçin"], [500861, "A͇m͇r͇i͇ G͇a͇m͇i͇n͇g͇"], [503072, "Семен Извеков"], [504352, "Cheyenne Miles"], [509757, "Yaman Kumar"], [514283, "James Gardener"], [515103, "David Lee"], [515531, "Dex (LuaDex)"], [516863, "Numerous 2.0"], [516875, "Rami Alloush"], [517921, "Bini Design"], [518718, "Layfy Arts"], [521298, "Angela Aganap"], [521999, "Iskandar Shah Bin Immrah"], [522801, "Selim Bulut"], [522801, "Selim Bulut"], [523082, "fatdia tv"], [523082, "fatdia tv"], [523084, "Sara Suliman"], [523442, "James Prendergast"], [523943, "VAPEG"], [524148, "GUMP (GUMP)"], [524962, "herman chiu"], [525163, "Bob Kennedy"], [534818, "Imaad Arain"], [538129, "Shaw Salvadore"], [538129, "Shaw Salvadore"], [542288, "Nog 13"], [543632, "Felipe Siqueira Reis"], [546054, "swapnil patil"], [548447, "Amit Tharval"], [549304, "Mitsuki O"], [550200, "Ryan Galeas"], [553211, "Interstellar Official"], [553255, "store radsazeh"], [554425, "Fernando Gimenez"], [554508, "theunknown guy"]],
|
||||
"authors" : [[1, "Ivan Kutskir"], [30889, "Michal Krzywania"], [186404, "MonstyrSlayr (MonstyrSlayr)"], [205931, "Kickass Tuber"], [206182, "hxim"], [206910, "Yikuan Sun"], [208253, "UnBest"], [210704, "mostafa mohamed"], [218023, "Cameron CAMBIT"], [220423, "Logan Weir"], [233072, "stoney"], [240087, "Jessica Paton"], [279052, "Maren Ortega Arlegui"], [283073, "food"], [289060, "Cal CoachesFX"], [308527, "CryptoBanker"], [321474, "القافة Agave"], [324863, "Aprameyan R"], [340495, "Games Bulletin"], [368079, "GaleFight"], [368363, "Gareth Edwards"], [393362, "Joinability"], [401270, "『༺dabcatz༻』"], [406586, "babydej"], [413192, "Ahmed Lloyd"], [414679, "Ariel Bristol"], [416002, "Carlite"], [418938, "avengedarmy"], [427446, "musa"], [428794, "Leah"], [433962, "snipexX Krunker"], [438548, "kixxu"], [457393, "0_gpl Studio"], [458757, "Doodle's Playground"], [461391, "Benjamin Tryfon"], [461391, "Benjamin Tryfon"], [462430, "AtmajyotiBasu7ERoll 7. TamoghnaBasu6CRoll 5."], [463954, "Oscar (OsCat)"], [471253, "Renata Alexandre"], [475463, "Luke Palios"], [476699, "Alexander Dvametry"], [479302, "Mark Anon"], [484724, "Jude Mitchell"], [485170, "Sahiwal Media"], [488986, "Faria Akter"], [488992, "Shamsul Arefin Khan Shams"], [489615, "Gideon Bispo"], [489375, "The Lifebringer"], [491847, "Lux DL"], [492066, "Numerous"], [492113, "Noka"], [492123, "Lucia Brander"], [493100, "Alberto Hernandez"], [493851, "Binyamin Szwarcfiter"], [494208, "Laura H.-C."], [498427, "—m."], [498694, "Senin İçin"], [500861, "A͇m͇r͇i͇ G͇a͇m͇i͇n͇g͇"], [503072, "Семен Извеков"], [504352, "Cheyenne Miles"], [508813, "JPL GAMING"], [509757, "Yaman Kumar"], [514283, "James Gardener"], [515103, "David Lee"], [515531, "Dex (LuaDex)"], [516863, "Numerous 2.0"], [516875, "Rami Alloush"], [517559, "Bilal Faisal"], [517921, "Bini Design"], [518718, "Layfy Arts"], [521298, "Angela Aganap"], [521999, "Iskandar Shah Bin Immrah"], [522801, "Selim Bulut"], [522801, "Selim Bulut"], [523082, "fatdia tv"], [523082, "fatdia tv"], [523084, "Sara Suliman"], [523442, "James Prendergast"], [523943, "VAPEG [ VIDEO & PHOTO EDITOR'S GUIDE ]"], [524148, "GUMP (GUMP)"], [524962, "herman chiu"], [525163, "Bob Kennedy"], [528859, "Trxnn"], [530810, "Roniew"], [534818, "Imaad Arain"], [538129, "Shaw Salvadore"], [538129, "Shaw Salvadore"], [542288, "Nog 13"], [543632, "Felipe Siqueira Reis"], [546054, "swapnil patil"], [548447, "Amit Tharval"], [549304, "Mitsuki O"], [550200, "Ryan Galeas"], [553211, "Interstellar Official"], [553255, "store radsazeh"], [554425, "Fernando Gimenez"], [554508, "theunknown guy"], [555639, "ROBLOX- ANIMATION"], [556492, "Mohammed Fahad. M"], [558902, "Galaxy Gamer"], [560694, "C Cline"], [562528, "ColmPlayz"], [564636, "Tutorial Editing tips Channel"], [570932, "Arai Atsuzawa"], [572195, "alex 1oqk"], [573228, "Cam"], [573647, "Sheyla Ramirez"], [576342, "Tuesday"], [576515, "Zanele Theron"], [577200, "XI IPS 4 Afifah Qodriasih"], [578236, "Other K"], [578236, "Other K"], [579229, "Alissa Camarillo"]],
|
||||
"list" : [
|
||||
[0, 1598900378, "AhPFS6c8", "https://i.imgur.com/nRleorO.png", 15, 8170, 1448, 19762, "Glitch Effect", "Double-click the current Smart Object and replace the text with something else."],
|
||||
[0, 1597044186, "1OQ7hpau", "https://i.imgur.com/H16QAeI.jpg", 12, 1224, 359, 1276491, "Your Favourite Recipes - Pink Fruits", "A template with a pink background with a dragonfruit, oranges and a rambutan. A great template for your cooking recipes!"],
|
||||
[0, 1597044224, "ZDTlyIOT", "https://i.imgur.com/OEijCJ6.jpg", 12, 1547, 518, 241255, "Cooking Template With Desserts", "A template with a breakfast: waffles with fruits and a coffee. Food and cooking template."],
|
||||
[0, 1597044258, "GHtge8Dl", "https://i.imgur.com/Rhok81o.jpg", 12, 5041, 1154, 108376, "Food and Recipes - Sweet Toast", "A breakfast with a toast with blueberries and a banana. Food and cooking template."],
|
||||
[0, 1597044289, "6Ij1S65M", "https://i.imgur.com/rICi6D3.jpg", 12, 1247, 361, 160410, "Perfect Food - Green Vegetables", "Gren leaves of cabbage and a cucubmer. A great template for food and recipes!"],
|
||||
[0, 1597044316, "TmCNblfl", "https://i.imgur.com/qP6Wgg9.jpg", 12, 2636, 537, 142045, "Cookies Template - Food and Meals", "A bowl of chocolate chip cookies. A perfect black and yellow template for instagram posts."],
|
||||
[0, 1597044360, "9Ug5R0El", "https://i.imgur.com/s5rZ9if.jpg", 12, 1735, 324, 175278, "Sunset Love Instagram Template", "A couple looking at the sunset, a night view of the sky. A perfect template for those in love."],
|
||||
[0, 1597044360, "4hChgdPh", "https://i.imgur.com/R02SfY9.jpg", 12, 761, 254, 125350, "Pink Love Instagram Template", "A couple kissing. A white text on a pink background."],
|
||||
[0, 1597044431, "g-_F_F0-", "https://i.imgur.com/RqKhFQw.png", 12, 994, 127, 46877, "Illustrated Love Instagram Template", "An illustration of a woman walking with an air balloon. Love Template."],
|
||||
[0, 1597044467, "CjHWPVnb", "https://i.imgur.com/AeiJnE2.jpeg", 12, 542, 151, 114793, "Candy Heart Love Template", "A red heart made of candies on a white background."],
|
||||
[0, 1597045564, "6diS4Udi", "https://i.imgur.com/gPtYvMp.jpeg", 12, 567, 177, 87016, "Holding Hands Love Template", "A couple holding hands with a sign \"Forever\". A pink and yellow love template."],
|
||||
[0, 1597044729, "5fn1vwnu", "https://i.imgur.com/LaIalQ7.png", 12, 1236, 347, 203424, "Spring Blossom Template", "A pink illustrated blossom on a yellow background. Flowers in the spring."],
|
||||
[0, 1597044753, "tIyUOFVO", "https://i.imgur.com/SyoAzy5.jpg", 12, 1115, 339, 281223, "Spring Sales Template", "A female model in a white dress on a dark background. Spring Sales."],
|
||||
[0, 1597044782, "KUBhxLm6", "https://i.imgur.com/HHlpTPv.jpeg", 12, 889, 214, 2289737, "Dresses Template", "Two women in dresses. A violet watercolor background. Spring sales."],
|
||||
[0, 1597044810, "fryPnXXv", "https://i.imgur.com/bl37CyK.jpeg", 12, 2318, 485, 581472, "Pink Flowers Template", "A woman in front of flowers. Pink background for Spring Sales."],
|
||||
[0, 1597044835, "UUMjJokO", "https://i.imgur.com/7wMD0mx.jpeg", 12, 2757, 800, 883259, "Yellow Blossoms Template", "Red and yellow illustrated blossoms. Handwritten text. Spring Sale."],
|
||||
[0, 1597044860, "QvTx54G2", "https://i.imgur.com/t5TOl7R.jpeg", 12, 872, 221, 239181, "Yellow Summer Beach", "An illustrated woman on the beach. A white text on a yellow background."],
|
||||
[0, 1597044914, "49TSUmuX", "https://i.imgur.com/J5SNilY.jpg", 12, 1407, 369, 161043, "Swimming Pool Template", "A woman sitting next to the swimming pool. Summer Template."],
|
||||
[0, 1597044944, "PoYrGpEh", "https://i.imgur.com/R4n7jKL.jpeg", 12, 1019, 216, 343232, "Blanket on the Beach", "A colorful blanket on the sand on the beach, next to a watermelon. Summer Sales."],
|
||||
[0, 1597044989, "WQGVADJb", "https://i.imgur.com/aIG9mCA.jpg", 12, 4034, 1293, 390710, "Girl on the Beach", "A little girl splashing in sea water on the seashore. Summer Sales."],
|
||||
[0, 1597045014, "LWrLIKaq", "https://i.imgur.com/8rstLgn.jpg", 12, 1954, 522, 114775, "Stairs to the Pool", "A yellow concrete and the stairs into the blue swimming pool. Mega Summer Sale."],
|
||||
[0, 1615816370, "nZleGUbA", "https://i.imgur.com/BrEt16C.jpeg", 14, 5737, 1455, 123378, "Drake Hotline Blink", "Meme template, not this, confirm that, yellow, orange jacket."],
|
||||
[0, 1615816923, "kN6Yq6ky", "https://i.imgur.com/jgiXWYJ.jpeg", 14, 2369, 616, 109190, "Distracted Boyfriend", "Meme template, boy, two girls, looking at another girl."],
|
||||
[0, 1615817122, "3w69c920", "https://i.imgur.com/wm2LwPY.jpeg", 14, 1174, 291, 98146, "Expanding Brain", "Meme template, brain expand, blue universe, skeleton."],
|
||||
[0, 1615817466, "XjwWxxs1", "https://i.imgur.com/UqGOwOQ.jpeg", 14, 820, 197, 47529, "Waiting Skeleton", "Meme template, skeleton on a bench, waiting."],
|
||||
[0, 1615817748, "qBfZo4wn", "https://i.imgur.com/M1un2Rh.jpg", 14, 1123, 283, 56850, "Roll Safe, Think About It", "Meme template, think, mind, finger pointing on a head, smart guy."],
|
||||
[0, 1615818153, "-YUMQGS5", "https://i.imgur.com/Bw2soXU.jpeg", 14, 465, 87, 174589, "American Chopper Argument", "Meme template, guys arguing, throwing a chair, fight."],
|
||||
[0, 1615818821, "jrroVBEE", "https://i.imgur.com/ZJt36be.jpg", 14, 896, 274, 52677, "Finding Neverland", "Meme template, boy crying on a bench, father hugging, Johnny Depp."],
|
||||
[0, 1615819766, "riFZgmuz", "https://i.imgur.com/s702Ga8.jpg", 14, 653, 145, 70165, "Types of Headaches", "Meme template. Heads red areas, migrene, hypertension, stress."],
|
||||
[0, 1620806515, "70imObZ3", "https://i.imgur.com/5GcK3x5.jpg", 15, 22531, 8444, 44547, "Bold Sign", "Bold Sign: 3D effect. Type your own text. Modify the hue in the adjustment layer."],
|
||||
[0, 1623865612, "QSV6D5Gr", "https://i.imgur.com/wRx0n0M.jpeg", 15, 4854, 2187, 43485, "3D Sign", "This is a text with a 3D effect. \n\nThe Hue adjustment layer lets you change the Hue of the result."],
|
||||
[0, 1624285529, "oswpYsHc", "https://i.imgur.com/XAArVEH.jpeg", 15, 1274, 548, 67511, "Vintage Sign", "A template for a Vintage Sign text, 3D effect, drop shadows."],
|
||||
[0, 1624292973, "hR2QlXuE", "https://i.imgur.com/2Ab5xzi.jpeg", 15, 630, 127, 60403, "Summer Sales Sign", "3D Sign effect, Black Text on Yellow Background, glossy.\n\nEdit the Smart Object (double-click the thumbnail of a layer)."],
|
||||
[0, 1629026777, "h1rK8U_v", "https://i.imgur.com/AbStcvf.jpeg", 24, 278, 56, 167967, "Dark Blue Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text :)"],
|
||||
[0, 1629027329, "YRhAHZ3E", "https://i.imgur.com/0YYKaTL.jpeg", 22, 343, 51, 1081005, "Party Flyer", "An invitation to a concert or a party, or a rock festival. Just fill in your own text. You can replace the background photo, too :)"],
|
||||
[0, 1629027754, "yz-L59ux", "https://i.imgur.com/01YvoGp.jpeg", 20, 193, 16, 7401717, "Brochure Template", "A free template for a brochure, a front and a back side. Fill in your own text."],
|
||||
[0, 1629104061, "oBfXl5rP", "https://i.imgur.com/c5R8rIw.jpeg", 20, 253, 53, 7834100, "Certificate Template", "Create a certificate, fill in names, remove the background."],
|
||||
[0, 1629104378, "iHBHbCZa", "https://i.imgur.com/aQD9Sag.jpeg", 22, 434, 120, 2377221, "Invitation Template", "Invitation to a wedding, or another event."],
|
||||
[0, 1630428812, "9UxUbJCN", "https://i.imgur.com/Frw3kYf.jpg", 24, 47, 1, 134997, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630428912, "3oc152-w", "https://i.imgur.com/aYBFuRm.jpg", 24, 69, 26, 679575, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630428969, "NVFkyNcs", "https://i.imgur.com/t5id5Kt.jpg", 24, 31, 1, 95022, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429023, "dyYu8V2R", "https://i.imgur.com/GxcGicZ.jpg", 24, 52, 11, 127499, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429086, "6Gdn2pwo", "https://i.imgur.com/79Z8Pnd.jpg", 24, 42, 7, 113625, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429128, "ZuKHrH7J", "https://i.imgur.com/fvv7Pws.jpg", 24, 72, 3, 116841, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429191, "6tTfZHbs", "https://i.imgur.com/s3akkXn.jpg", 24, 30, 5, 120870, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429229, "37OCXBSu", "https://i.imgur.com/TqXYjbU.jpg", 24, 41, 1, 120778, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429291, "NAg6Ls7H", "https://i.imgur.com/znL9Df8.jpg", 24, 137, 27, 148372, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429341, "56Hw3_oD", "https://i.imgur.com/KnkPJkX.jpg", 24, 54, 4, 112573, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630662905, "EJ4La1Lj", "https://i.imgur.com/I5nfcch.jpg", 15, 346, 148, 21628, "Super! Neon Glow Sign", "3D text sign, replace the text with your own."],
|
||||
[0, 1630663028, "0o6neJfg", "https://i.imgur.com/kjNcAP1.jpg", 15, 143, 41, 146019, "Metallic Grey Sign", "3D text sign, replace the text with your own."],
|
||||
[0, 1630663169, "tpB6vZji", "https://i.imgur.com/kcbBgP1.jpg", 15, 616, 290, 66063, "Fantastic Neon Sign", "3D text sign, replace the text with your own. Blue Neon on a purple background."],
|
||||
[0, 1630663242, "a75eYlc3", "https://i.imgur.com/493UB7b.jpg", 15, 1298, 492, 166620, "Burning Sign", "3D text sign, replace the text with your own. Burning Fire on charcoal."],
|
||||
[0, 1630663298, "mGnCDNiW", "https://i.imgur.com/nsKbxB7.jpg", 15, 136, 43, 164790, "Horror Sign", "3D text sign, replace the text with your own."],
|
||||
[0, 1630663428, "ggzthM22", "https://i.imgur.com/dSec3Om.jpg", 15, 1678, 582, 208930, "Green Earth Sign", "3D Sign, replace text with your own. Green text on ferns."],
|
||||
[0, 1630663520, "jPDI_91H", "https://i.imgur.com/rQ2vvxq.jpg", 15, 298, 152, 14575, "Gelly Neon Sign", "3D Sign, replace text with your own. Cyan text on a purple background."],
|
||||
[0, 1630663624, "QkxqCgcu", "https://i.imgur.com/uyiNweu.jpg", 15, 833, 328, 14299, "Ice Melting Sign", "3D Sign, replace text with your own. Blue Melting ice and snow."],
|
||||
[0, 1630679401, "I-Jhpwbr", "https://i.imgur.com/J8TaH3S.jpg", 15, 52, 5, 56570, "Retro Western Sign", "3D text sign, replace the text with your own. Burning Fire on charcoal."],
|
||||
[0, 1630679487, "WUAwYYzJ", "https://i.imgur.com/U6Hp7bo.jpg", 15, 236, 148, 15488, "Digital Text Template", "3D text sign, replace the text with your own. Burning Fire on charcoal."],
|
||||
[0, 1631191225, "vepAf3Sv", "https://i.imgur.com/uc21kTQ.png", 14, 55, 21, 14695, "Mom, can we have Meme", "Mom, can we have ABC? No, we have it at home. ABC at home: ... :)"],
|
||||
[1, 1595367974, "4OywckpH", "https://i.imgur.com/fRKNJn5.jpg", 60, 4660, 585, 126265, "Easter Eggs", "With this template you can make egg in any colour just with adjustments layers. Egg is made of shapes and can be scaled."],
|
||||
[2, 1622685868, "48W_yWwX", "https://i.imgur.com/N02oAhj.png", 0, 150, 39, 14834, "top text bottom text", "for memes"],
|
||||
[3, 1595367974, "GEiPiJ3G", "https://i.imgur.com/zc3YJra.jpg", 11, 1277, 609, 1485847, "Gaming Youtube Thumbnail", "Youtube thumbnail template for a gaming channel. Just replace text and images, and you're good to go!"],
|
||||
[3, 1595367974, "8zs_rsUM", "https://i.imgur.com/KmN9tiC.jpg", 11, 2840, 1266, 1051621, "Horror Youtube Thumbnail", "Youtube thumbnail template for a Horror channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "xQ_vr7Eq", "https://i.imgur.com/KdpcRSE.jpg", 11, 1873, 610, 734543, "Workout Youtube Thumbnail", "Youtube thumbnail template for fitness, gym, or bodybuilding channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "tkezvXHD", "https://i.imgur.com/mYLF9aS.jpg", 11, 6654, 2579, 2055732, "Comics Youtube Thumbnail", "Youtube thumbnail template for a comics channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "NSy6IRnK", "https://i.imgur.com/qEg5EHn.jpg", 11, 1457, 475, 1706991, "Recipe Youtube Thumbnail", "Youtube thumbnail template for a recipes channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "WGIT2_st", "https://i.imgur.com/olzR2zB.jpg", 11, 1167, 399, 1048752, "Travel Youtube Thumbnail", "Youtube thumbnail template for a travel channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "WrmaWefR", "https://i.imgur.com/RIrnm0j.jpg", 11, 986, 294, 1830635, "Eco-friendly Youtube Thumbnail", "Youtube thumbnail template for an eco-friendly channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "ZvVT4ggb", "https://i.imgur.com/O9kqesI.jpg", 11, 3242, 962, 316079, "Photo Youtube Thumbnail", "Youtube thumbnail template for a photography channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "arbbwc9D", "https://i.imgur.com/Vbxw71F.jpg", 11, 1652, 530, 311898, "Coach Youtube Thumbnail", "Youtube thumbnail template for a coach or expert channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "sSEIYsOY", "https://i.imgur.com/roj5ETE.jpg", 11, 2376, 699, 989638, "Fancy Vlog Youtube Thumbnail", "Youtube thumbnail template for a lifestyle channel. Just replace text and images and you're good to go!"],
|
||||
[4, 1600245541, "coMZ_M8b", "https://i.imgur.com/zgqKQeP.png", 60, 2619, 93, 7815, "File Icon", "File icon template for any file format."],
|
||||
[4, 1600246700, "Kz9gZey0", "https://i.imgur.com/sGx8FVU.png", 11, 1378, 504, 1257824, "Youtube Thumbnail Space", "Youtube Thumbnail for your videos."],
|
||||
[4, 1600246711, "rvDqZeC7", "https://i.imgur.com/gd3ne9l.jpg", 11, 3810, 846, 1400067, "Youtube Thumbnail Tower", "Youtube Thumbnail for your videos."],
|
||||
[5, 1625795091, "YRGR3E-U", "https://i.imgur.com/nBZJdmU.png", 60, 257, 23, 128714, "Magic Flame", "Customizable fantasy style flame with an anamorphic flare. Styles can easily be chosen with the included adjustment layers."],
|
||||
[5, 1625798662, "dUnVg0D1", "https://i.imgur.com/oCtvX6B.jpg", 60, 413, 61, 218936, "Lens Flare", "Customizable lens flare PSD."],
|
||||
[5, 1625853662, "m65gSYfi", "https://i.imgur.com/p12DNoU.jpg", 11, 523, 146, 600058, "Photopea Tutorial Thumbnail", "Thumbnail for a Photopea tutorial video"],
|
||||
[5, 1628046084, "KH04tLq4", "https://i.imgur.com/ybFRcYU.jpg", 2, 694, 154, 688471, "Digital Asset Pack Mockup", "Make a little box for your brushes, overlays, stock photos, actions, or other digital assets."],
|
||||
[5, 1628361677, "b_7ZUwAy", "https://i.imgur.com/xUs0LjP.jpg", 14, 92, 12, 88642, "Mel Gibson Talking to Bloody Jesus", "Jajaja"],
|
||||
[5, 1628703104, "msLJhWno", "https://i.imgur.com/34s8x3d.jpg", 15, 641, 72, 5540779, "Glow Text", "Based on https:\/\/www.youtube.com\/watch?v=AbSEtXJUtL0"],
|
||||
[5, 1629041967, "HRq1a4l8", "https://i.imgur.com/aC8xlNl.jpg", 11, 237, 34, 3950347, "Photopea Tutorial Thumbnail 2", "A better Photopea thumbnail template"],
|
||||
[5, 1630279132, "RfUelY4C", "https://i.imgur.com/T3IUzPP.jpg", 1, 421, 48, 11165478, "Desktop Wallpaper Mockup", "Show off how good your wallpaper would look on a computer screen!"],
|
||||
[5, 1630975261, "x4uKSbGB", "https://i.imgur.com/5OSkWex.jpg", 15, 928, 387, 1755775, "Shockwave Text", "Made with https:\/\/www.deviantart.com\/yikuans\/art\/15-Smoke-Overlays-891103314 and https:\/\/www.deviantart.com\/yikuans\/art\/Lens-Flare-Components-Deluxe-888810787"],
|
||||
[5, 1631235943, "fD_Off7R", "https://i.imgur.com/ySsVrek.jpg", 15, 427, 69, 5805593, "Reflected logo", "cool"],
|
||||
[6, 1595367974, "Jh67Y-Kk", "https://i.imgur.com/bjZpfa7.png", 15, 9072, 4032, 34795, "Text styles", "Exclusive text style by UnBest"],
|
||||
[7, 1598889099, "E4bJER5O", "https://i.imgur.com/eFqMOhC.jpg", 2, 1083, 76, 3322433, "Box Mockups", "The best Box Mockup helps you to showcase packaging designs for the final presentation. You will see the smart layer in it that provides the easiness for amendment."],
|
||||
[7, 1598890123, "td7q9Ed-", "https://i.imgur.com/1OPNc0A.jpg", 2, 6101, 1030, 1172599, "Hanging Wall Sign", "Make your signage or logo presentation stand out with this photorealistic mock-up of an original round wall sign. The high-quality PSD file includes a smart layer where you can simply drag and drop your design."],
|
||||
[7, 1598890654, "nIOQ7tcZ", "https://i.imgur.com/4SF65vs.jpg", 0, 3645, 372, 6050131, "Shop Facade Logo", "Today we have for you a new logo mock-up of a shop facade that will make your branding design projects stand out. The PSD file includes smart objects so you can easily add your own design and create a flawless presentation"],
|
||||
[7, 1621609499, "pIJxJX-Q", "https://i.imgur.com/N0Vj2kB.jpg", 2, 4390, 541, 6226084, "realistic t-shirts mockup", "The best T-shirt Mockup which you can use freely to showcase your next t-shirt project. You can change the color of the t-shirt by applying background fill inside the smart object. You can change the inner color of the hanging t-shirt."],
|
||||
[7, 1621610343, "m-qAlc8j", "https://i.imgur.com/LSLy2rG.jpg", 2, 603, 54, 8544483, "Event Ticket Mockup", "Simple and clean ticket mockups. As always, mockups are easy to customize to your needs \u2013 you can present your ticket project within seconds"],
|
||||
[7, 1621614043, "1aY3Zns4", "https://i.imgur.com/yFsXitU.jpg", 2, 2803, 439, 2118187, "Floating Business Card Mockup", "Showcase your branding designs with flying business cards! \nyou can replace the front and the back design of the business card, change the background color, and fully customize your image"],
|
||||
[7, 1621614622, "EOyb6tTz", "https://i.imgur.com/AHZRIoV.jpeg", 0, 537, 49, 1036557, "Sticker Mockup", "An easy-to-use mockup for presenting sticker designs: Simply add your vector graphics to the smart layer and see how your sticker will look like in real life"],
|
||||
[7, 1621684704, "eZZan9uq", "https://i.imgur.com/I1so86M.jpg", 2, 500, 50, 4335274, "Box Mockups 2", "part 2\nThe best Box Mockup helps you to showcase packaging designs for the final presentation. You will see the smart layer in it that provides the easiness for amendment."],
|
||||
[7, 1621684973, "HRVbn1ou", "https://i.imgur.com/RO2JPfQ.jpg", 2, 348, 22, 2852154, "Box Mockups 3", "part 3 The best Box Mockup that helps you to showcase packaging designs for the final presentation. You will see the smart layer in it that provides the easiness for amendment."],
|
||||
[7, 1621685807, "Nu4BC58u", "https://i.imgur.com/7peolao.jpg", 2, 1465, 172, 1469641, "Vertical Business Card Mockup", "use the best vertical business card mockup PSD file for your next business project. This has the best perspective with clean photo-realistic looks. You can use this vertical business card mockup for a commercial or personal project."],
|
||||
[7, 1630692650, "jSMybe-7", "https://i.imgur.com/nsroJil.jpg", 0, 70, 4, 11583809, "smart band", "full editable smart band mockup"],
|
||||
[7, 1630692866, "7dtCSgfQ", "https://i.imgur.com/HVHhnY6.jpg", 0, 307, 31, 755808, "notebook", "full editable notebook mockup"],
|
||||
[7, 1630842968, "CAJ94Cb1", "https://i.imgur.com/Z3f4hYA.jpg", 0, 484, 38, 16173095, "cup mockup", "2 cups free mockup"],
|
||||
[7, 1630889315, "QlzjKw8s", "https://i.imgur.com/KKPkwB9.jpg", 0, 80, 12, 460085, "flash mockup", "free realistic flash mockup"],
|
||||
[7, 1630889666, "V1Bk5Fn4", "https://i.imgur.com/fq5V3NJ.jpg", 0, 127, 19, 1359291, "pin mockup", "realistic pin mockup"],
|
||||
[8, 1612277646, "T6OQWyRF", "https://i.imgur.com/fNAaMog.jpeg", 11, 6277, 1968, 5153440, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612277883, "YQWO2Nrf", "https://i.imgur.com/1BMXG66.jpg", 11, 4835, 1494, 3407042, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612277979, "059BeiwE", "https://i.imgur.com/wwhtrMi.jpg", 11, 4217, 1782, 5656427, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612278095, "GB7k2aof", "https://i.imgur.com/1WiOwg8.jpeg", 11, 2541, 623, 3455074, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278221, "Wl1P3KKX", "https://i.imgur.com/c3iYexa.jpeg", 0, 2932, 680, 8412690, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278296, "OGGk-r94", "https://i.imgur.com/WfSW6AL.jpg", 11, 1294, 310, 7331748, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278524, "6JbggYyc", "https://i.imgur.com/Av4atLh.jpg", 11, 1269, 310, 3485754, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278898, "3EnNJiGg", "https://i.imgur.com/YD9z5jQ.jpg", 11, 1594, 605, 355184, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612279032, "F7XgAax_", "https://i.imgur.com/IlCcfp0.jpg", 11, 4530, 1581, 3395167, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279087, "6i0sGHH5", "https://i.imgur.com/zO2QQl2.jpg", 11, 2889, 973, 4980620, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279142, "yMbjJ7Ef", "https://i.imgur.com/CdxHXFO.jpg", 11, 1498, 679, 115667, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279191, "SlmPx69t", "https://i.imgur.com/juaoVK2.jpg", 11, 4442, 1764, 5447982, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279361, "tFYDK8wL", "https://i.imgur.com/j8eJp9D.jpg", 11, 3987, 1931, 3102153, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279423, "YCX2nm4c", "https://i.imgur.com/x6tpywI.jpeg", 11, 5775, 2216, 6199030, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279471, "VKzHJVFB", "https://i.imgur.com/nwtki5N.jpg", 11, 10292, 3197, 2558479, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279519, "YK0vCVc0", "https://i.imgur.com/50UPxcv.jpg", 11, 6498, 2563, 2086745, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279651, "o05JofbF", "https://i.imgur.com/PXRipnx.jpg", 11, 12077, 2106, 202002, "Among Us Thumbnail", "Simple, easily customizable Among Us Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/uy7x17cq (CAMBIT Creates on YT)"],
|
||||
[8, 1612280005, "k4GI2P3z", "https://i.imgur.com/TvZvM6C.jpeg", 11, 5815, 2822, 657807, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/2ewfvnn9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612280081, "m6x93Azo", "https://i.imgur.com/QV9SdiM.jpg", 11, 4461, 1913, 167582, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/2ewfvnn9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612280228, "7i7XCTEb", "https://i.imgur.com/AioZJTn.jpg", 11, 1420, 294, 215580, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\ntinyurl.com\/2ewfvnn9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612280446, "k9XQB-8f", "https://i.imgur.com/R6VjyWk.jpg", 15, 63131, 13272, 121884, "Neon Sign", "Simple, easily customizable Neon Sign.\n\nVideo on how to customize this template:\ntinyurl.com\/i4sbjlcf (CAMBIT Creates on YT)"],
|
||||
[8, 1612280604, "SYx9-f-b", "https://i.imgur.com/zReKban.jpg", 11, 3767, 971, 797316, "Apex Legends Thumbnail", "Simple, easily customizable Apex Legends Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/yyolbbpl (CAMBIT Creates on YT)"],
|
||||
[8, 1612280878, "bJRXRIfq", "https://i.imgur.com/h5N1C88.jpeg", 11, 4894, 1852, 4386550, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/3fcbp6b4 (CAMBIT Creates on YT)"],
|
||||
[8, 1612281260, "Ya6q0Tln", "https://i.imgur.com/zwbJQwV.jpg", 11, 11947, 4149, 4435004, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/cpdlji93 (CAMBIT Creates on YT)"],
|
||||
[8, 1612281457, "vKhoMzqP", "https://i.imgur.com/GZQ9gp2.jpg", 11, 2387, 646, 1044696, "Minecraft YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/y228jzgb (CAMBIT Creates on YT)"],
|
||||
[8, 1612281727, "tcyaiJYB", "https://i.imgur.com/83wrIJc.jpg", 11, 6586, 1539, 1028797, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/14lfz8p0 (CAMBIT Creates on YT)"],
|
||||
[8, 1612281864, "2ZWRRzhf", "https://i.imgur.com/nGNM3QT.jpg", 11, 1022, 309, 2118021, "Call of Duty Thumbnail", "Simple, easily customizable Call of Duty Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/2bopuzm2 (CAMBIT Creates on YT)"],
|
||||
[8, 1612282028, "1ZOZbFH-", "https://i.imgur.com/2gB601B.jpg", 10, 405, 63, 729897, "Fall Logo", "Simple, easily customizable Fall Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/yzmft4jh (CAMBIT Creates on YT)"],
|
||||
[8, 1612282134, "PkMX3Lm9", "https://i.imgur.com/637ZNYy.jpg", 10, 442, 88, 7327824, "Fall Banner", "Simple, easily customizable Fall banner.\n\nVideo on how to customize this template:\ntinyurl.com\/85q28ayt (CAMBIT Creates on YT)"],
|
||||
[8, 1612282339, "iDpXkmYb", "https://i.imgur.com/fmuYmD4.jpg", 11, 5391, 1713, 2805682, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/35wu84qd (CAMBIT Creates on YT)"],
|
||||
[8, 1612282573, "wc9mhU6q", "https://i.imgur.com/IJkOhav.jpeg", 11, 1767, 493, 632116, "Roblox Thumbnail", "Simple, easily customizable Roblox Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/4zbntnbf (CAMBIT Creates on YT)"],
|
||||
[8, 1612282817, "p3tlvANF", "https://i.imgur.com/DmjI4Pj.jpeg", 11, 5878, 1494, 2123701, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/3w3ufotm (CAMBIT Creates on YT)"],
|
||||
[8, 1612285645, "TlFSLsyK", "https://i.imgur.com/6GgFioO.jpg", 11, 1642, 460, 882640, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\ntinyurl.com\/3l54vja8 (CAMBIT Creates on YT)"],
|
||||
[8, 1612365440, "0oq9raSA", "https://i.imgur.com/cSpmvJF.jpg", 10, 1075, 237, 121585, "Roblox Logo", "Simple, easily customizable Roblox Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1csgij7z (CAMBIT Creates on YT)"],
|
||||
[8, 1612545406, "duzu5AMd", "https://i.imgur.com/Cublu8K.jpg", 15, 33854, 10774, 57591, "Golden Text", "Simple, easily customizable Golden Text.\n\nVideo on how to make this golden text is on my YouTube.\n(CAMBIT Creates on YT)"],
|
||||
[8, 1612810564, "mfOWPzLQ", "https://i.imgur.com/XTWQNAs.jpg", 11, 3511, 613, 611504, "Minecraft Thumbnail", "Simple, easily customizable Minecraft Thumbnail.\n\nVideo on how to make this template is on my YouTube\n(CAMBIT Creates on YT)"],
|
||||
[8, 1613762354, "QBy-usaD", "https://i.imgur.com/K4qYD4Q.jpeg", 11, 1666, 384, 1411901, "Roblox Arsenal YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to make this is at:\nCAMBIT Creates on YT"],
|
||||
[8, 1613940663, "7zAwU9Ts", "https://i.imgur.com/8YAlikJ.jpg", 11, 7757, 1817, 614035, "Fortnite Highlights Thumbnail", "Simple, easily customizable Fortnite Highlights Thumbnail.\n\nVideo on how to make this:\nCAMBIT Creates on YT"],
|
||||
[8, 1615230335, "vuyTuGtk", "https://i.imgur.com/paF54NZ.jpg", 11, 8566, 3903, 201278, "80s Retro Banner", "Tutorial on how to make this banner will be at CAMBIT Creates on YouTube!\n\nhttps:\/\/www.youtube.com\/channel\/UCUYghcyi3yBoBFUiW94EdWw"],
|
||||
[8, 1616426647, "bNZxrnSq", "https://i.imgur.com/Df6rJGa.jpeg", 10, 2533, 795, 72047, "Simple Stream Overlay", "Simple, easily customizable Stream Overlay.\n\nVideo on how to customize this template:\n (CAMBIT Creates on YT)"],
|
||||
[8, 1617376577, "vxP4nbZR", "https://i.imgur.com/chLmQSy.jpeg", 11, 2150, 807, 468545, "Simple YouTube End Screen (Glowing)", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to make this template:\n(CAMBIT Creates on YT)"],
|
||||
[8, 1617814260, "W9PFcnhB", "https://i.imgur.com/Ztd1eRr.jpg", 10, 5129, 1909, 37400, "Stream Starting Soon Screen", "Simple, easily customizable Starting Soon Screen.\n\nVideo on how to customize this template:\n(CAMBIT Creates on YT)"],
|
||||
[8, 1626448684, "c7DNJHqq", "https://i.imgur.com/yywoZnI.jpeg", 11, 1460, 913, 49687, "Clean Thumbnail", "If you want to know how to create this thumbnail in under 5 minutes check out my channel CAMBIT Creates!\nhttps:\/\/www.youtube.com\/channel\/UCUYghcyi3yBoBFUiW94EdWw"],
|
||||
[8, 1632407126, "zWz6k8at", "https://i.imgur.com/h990yTB.jpeg", 11, 68, 21, 202989, "Simple Discord Banner", "Check out my channel for a tutorial on how to make this from scratch! (CAMBIT Creates)"],
|
||||
[9, 1597183310, "j_mZxB8z", "https://i.imgur.com/u5T0u7Q.jpg", 11, 2943, 424, 821464, "Minecraft Gaming Thumbnail", "This is for yt!"],
|
||||
[9, 1598368072, "xu8aeYHz", "https://i.imgur.com/Hoz56X2.jpg", 11, 2924, 556, 224548, "New Minecraft Thumbnail", "I made one a month back which sucked so I made a better one"],
|
||||
[10, 1598657100, "aMMhldj_", "https://i.imgur.com/2FRfEDZ.jpg", 11, 6520, 1744, 2661555, "Minecraft Thumbnail", "Steve skin in diamond armor. Overall its quite basic"],
|
||||
[10, 1604604359, "QBwCLOcd", "https://i.imgur.com/qR5zqbJ.jpg", 11, 2171, 184, 10314629, "Krunker Thumbnail", "multiple krunker renders that i made (im new to blender so dont judge them too badly lol)\n\nsandstorm background"],
|
||||
[11, 1632327234, "-iBtEQaJ", "https://i.imgur.com/oxlGC1M.jpg", 0, 15, 0, 339502, "gettyimages-469525152-2048x2048", "miles teller, Daniel Sharman and roman kemp"],
|
||||
[11, 1632327324, "iIjJcG8H", "https://i.imgur.com/i0akUp5.jpg", 0, 27, 0, 2033588, "gettyimages-469525152-2048x2048", "miles teller, Daniel Sharman, roman kemp"],
|
||||
[12, 1602750897, "Di40vm7k", "https://i.imgur.com/s9syupL.jpeg", 11, 3668, 521, 3056763, "FIFA THUMBNAIL", "Very nice made with photophea thumbnail."],
|
||||
[13, 1603211815, "C0QsdbO5", "https://i.imgur.com/XRPMiYy.jpg", 10, 5215, 977, 8213, "Custom Discord Profile Picture (by \"food\") (360 x 360) for higher resolution", "I made this for people that want to customize the default Discord profile picture, I included all the default colors Discord uses"],
|
||||
[13, 1606764477, "kwOGg8Zh", "https://i.imgur.com/WdRWr9c.png", 10, 1853, 180, 17095, "Custom Google Profile Picture (by \"food\")", "includes the colors i could find, sorry if the colors arent named its too much work and its too hard with photopea's renaming system, they should probably add a shortcut for renaming."],
|
||||
[14, 1603198820, "U7Bj-Jdg", "https://i.imgur.com/WPKgBWp.jpeg", 11, 1111, 228, 5015404, "Youtube FIFA 21 Channel art", "A template on FIFA 21 channel art template works for mobile and pc really well."],
|
||||
[14, 1607541653, "1bZwWzKb", "https://i.imgur.com/1dkRecR.jpeg", 11, 1159, 172, 6975285, "Forza Horizon 4 Banner", "The banner includes a montage of your favourite car or even Cars. As long side this they allow for a simple clean Text effect using drop shadows. This simple but amazing looking banner with take your YouTube channel to the next level and help you to exceed your potential."],
|
||||
[15, 1605273264, "GYoLS0pz", "https://i.imgur.com/7KXPfIl.jpg", 11, 14445, 5154, 273804, "Youtube thumbnail", "Heres a free youtube thumbnail design i made hope you like it..of you wish to get the paid version subscribe to my youtube channel https:\/\/www.youtube.com\/channel\/UCBE9xYAWoHw1GHqRdVxBGew"],
|
||||
[16, 1616781581, "z93Laqlr", "https://imgur.com/uOK1zhK.png", 60, 4206, 1624, 1910452, "Galaxy TEXT", "."],
|
||||
[16, 1620844102, "4-xlugRN", "https://imgur.com/Mmr2WjP.jpg", 60, 367, 51, 265983, "\u0643\u0644 \u0639\u0627\u0645 \u0648\u0627\u0646\u062a\u0645 \u0628\u062e\u064a\u0631", "\u062a\u0635\u0645\u064a\u0645 \u0644\u0644\u0639\u064a\u062f"],
|
||||
[16, 1629536996, "9rq7Nw_l", "https://imgur.com/sYA72Cx.jpg", 11, 360, 77, 1013620, "Thumbnail \u0635\u0648\u0631\u0629 \u0645\u0635\u063a\u0631\u0629", "Make thumbnails more beautiful\nhttps:\/\/youtube.com\/shorts\/8XfcSZk0Nrc?feature=share"],
|
||||
[17, 1622444359, "62J0PiM7", "https://i.imgur.com/w9EgIbl.jpg", 60, 231, 17, 247812, "AR Project", "This is my first project"],
|
||||
[0, 1598900378, "AhPFS6c8", "https://i.imgur.com/nRleorO.png", 15, 8521, 1474, 19762, "Glitch Effect", "Double-click the current Smart Object and replace the text with something else."],
|
||||
[0, 1597044186, "1OQ7hpau", "https://i.imgur.com/H16QAeI.jpg", 12, 1275, 378, 1276491, "Your Favourite Recipes - Pink Fruits", "A template with a pink background with a dragonfruit, oranges and a rambutan. A great template for your cooking recipes!"],
|
||||
[0, 1597044224, "ZDTlyIOT", "https://i.imgur.com/OEijCJ6.jpg", 12, 1610, 537, 241255, "Cooking Template With Desserts", "A template with a breakfast: waffles with fruits and a coffee. Food and cooking template."],
|
||||
[0, 1597044258, "GHtge8Dl", "https://i.imgur.com/Rhok81o.jpg", 12, 5191, 1199, 108376, "Food and Recipes - Sweet Toast", "A breakfast with a toast with blueberries and a banana. Food and cooking template."],
|
||||
[0, 1597044289, "6Ij1S65M", "https://i.imgur.com/rICi6D3.jpg", 12, 1289, 369, 160410, "Perfect Food - Green Vegetables", "Gren leaves of cabbage and a cucubmer. A great template for food and recipes!"],
|
||||
[0, 1597044316, "TmCNblfl", "https://i.imgur.com/qP6Wgg9.jpg", 12, 2744, 568, 142045, "Cookies Template - Food and Meals", "A bowl of chocolate chip cookies. A perfect black and yellow template for instagram posts."],
|
||||
[0, 1597044360, "9Ug5R0El", "https://i.imgur.com/s5rZ9if.jpg", 12, 1769, 327, 175278, "Sunset Love Instagram Template", "A couple looking at the sunset, a night view of the sky. A perfect template for those in love."],
|
||||
[0, 1597044360, "4hChgdPh", "https://i.imgur.com/R02SfY9.jpg", 12, 791, 261, 125350, "Pink Love Instagram Template", "A couple kissing. A white text on a pink background."],
|
||||
[0, 1597044431, "g-_F_F0-", "https://i.imgur.com/RqKhFQw.png", 12, 1020, 132, 46877, "Illustrated Love Instagram Template", "An illustration of a woman walking with an air balloon. Love Template."],
|
||||
[0, 1597044467, "CjHWPVnb", "https://i.imgur.com/AeiJnE2.jpeg", 12, 584, 167, 114793, "Candy Heart Love Template", "A red heart made of candies on a white background."],
|
||||
[0, 1597045564, "6diS4Udi", "https://i.imgur.com/gPtYvMp.jpeg", 12, 593, 193, 87016, "Holding Hands Love Template", "A couple holding hands with a sign \"Forever\". A pink and yellow love template."],
|
||||
[0, 1597044729, "5fn1vwnu", "https://i.imgur.com/LaIalQ7.png", 12, 1274, 359, 203424, "Spring Blossom Template", "A pink illustrated blossom on a yellow background. Flowers in the spring."],
|
||||
[0, 1597044753, "tIyUOFVO", "https://i.imgur.com/SyoAzy5.jpg", 12, 1154, 354, 281223, "Spring Sales Template", "A female model in a white dress on a dark background. Spring Sales."],
|
||||
[0, 1597044782, "KUBhxLm6", "https://i.imgur.com/HHlpTPv.jpeg", 12, 914, 219, 2289737, "Dresses Template", "Two women in dresses. A violet watercolor background. Spring sales."],
|
||||
[0, 1597044810, "fryPnXXv", "https://i.imgur.com/bl37CyK.jpeg", 12, 2381, 493, 581472, "Pink Flowers Template", "A woman in front of flowers. Pink background for Spring Sales."],
|
||||
[0, 1597044835, "UUMjJokO", "https://i.imgur.com/7wMD0mx.jpeg", 12, 2857, 836, 883259, "Yellow Blossoms Template", "Red and yellow illustrated blossoms. Handwritten text. Spring Sale."],
|
||||
[0, 1597044860, "QvTx54G2", "https://i.imgur.com/t5TOl7R.jpeg", 12, 907, 232, 239181, "Yellow Summer Beach", "An illustrated woman on the beach. A white text on a yellow background."],
|
||||
[0, 1597044914, "49TSUmuX", "https://i.imgur.com/J5SNilY.jpg", 12, 1472, 449, 161043, "Swimming Pool Template", "A woman sitting next to the swimming pool. Summer Template."],
|
||||
[0, 1597044944, "PoYrGpEh", "https://i.imgur.com/R4n7jKL.jpeg", 12, 1053, 240, 343232, "Blanket on the Beach", "A colorful blanket on the sand on the beach, next to a watermelon. Summer Sales."],
|
||||
[0, 1597044989, "WQGVADJb", "https://i.imgur.com/aIG9mCA.jpg", 12, 4327, 1382, 390710, "Girl on the Beach", "A little girl splashing in sea water on the seashore. Summer Sales."],
|
||||
[0, 1597045014, "LWrLIKaq", "https://i.imgur.com/8rstLgn.jpg", 12, 2013, 535, 114775, "Stairs to the Pool", "A yellow concrete and the stairs into the blue swimming pool. Mega Summer Sale."],
|
||||
[0, 1615816370, "nZleGUbA", "https://i.imgur.com/BrEt16C.jpeg", 14, 6215, 1594, 123378, "Drake Hotline Blink", "Meme template, not this, confirm that, yellow, orange jacket."],
|
||||
[0, 1615816923, "kN6Yq6ky", "https://i.imgur.com/jgiXWYJ.jpeg", 14, 2584, 680, 109190, "Distracted Boyfriend", "Meme template, boy, two girls, looking at another girl."],
|
||||
[0, 1615817122, "3w69c920", "https://i.imgur.com/wm2LwPY.jpeg", 14, 1280, 328, 98146, "Expanding Brain", "Meme template, brain expand, blue universe, skeleton."],
|
||||
[0, 1615817466, "XjwWxxs1", "https://i.imgur.com/UqGOwOQ.jpeg", 14, 893, 231, 47529, "Waiting Skeleton", "Meme template, skeleton on a bench, waiting."],
|
||||
[0, 1615817748, "qBfZo4wn", "https://i.imgur.com/M1un2Rh.jpg", 14, 1224, 308, 56850, "Roll Safe, Think About It", "Meme template, think, mind, finger pointing on a head, smart guy."],
|
||||
[0, 1615818153, "-YUMQGS5", "https://i.imgur.com/Bw2soXU.jpeg", 14, 495, 96, 174589, "American Chopper Argument", "Meme template, guys arguing, throwing a chair, fight."],
|
||||
[0, 1615818821, "jrroVBEE", "https://i.imgur.com/ZJt36be.jpg", 14, 959, 297, 52677, "Finding Neverland", "Meme template, boy crying on a bench, father hugging, Johnny Depp."],
|
||||
[0, 1615819766, "riFZgmuz", "https://i.imgur.com/s702Ga8.jpg", 14, 715, 163, 70165, "Types of Headaches", "Meme template. Heads red areas, migrene, hypertension, stress."],
|
||||
[0, 1620806515, "70imObZ3", "https://i.imgur.com/5GcK3x5.jpg", 15, 26338, 9921, 44547, "Bold Sign", "Bold Sign: 3D effect. Type your own text. Modify the hue in the adjustment layer."],
|
||||
[0, 1623865612, "QSV6D5Gr", "https://i.imgur.com/wRx0n0M.jpeg", 15, 5646, 2568, 43485, "3D Sign", "This is a text with a 3D effect. \n\nThe Hue adjustment layer lets you change the Hue of the result."],
|
||||
[0, 1624285529, "oswpYsHc", "https://i.imgur.com/XAArVEH.jpeg", 15, 1471, 637, 67511, "Vintage Sign", "A template for a Vintage Sign text, 3D effect, drop shadows."],
|
||||
[0, 1624292973, "hR2QlXuE", "https://i.imgur.com/2Ab5xzi.jpeg", 15, 730, 141, 60403, "Summer Sales Sign", "3D Sign effect, Black Text on Yellow Background, glossy.\n\nEdit the Smart Object (double-click the thumbnail of a layer)."],
|
||||
[0, 1629026777, "h1rK8U_v", "https://i.imgur.com/AbStcvf.jpeg", 24, 499, 111, 167967, "Dark Blue Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text :)"],
|
||||
[0, 1629027329, "YRhAHZ3E", "https://i.imgur.com/0YYKaTL.jpeg", 22, 583, 113, 1081005, "Party Flyer", "An invitation to a concert or a party, or a rock festival. Just fill in your own text. You can replace the background photo, too :)"],
|
||||
[0, 1629027754, "yz-L59ux", "https://i.imgur.com/01YvoGp.jpeg", 20, 269, 48, 7401717, "Brochure Template", "A free template for a brochure, a front and a back side. Fill in your own text."],
|
||||
[0, 1629104061, "oBfXl5rP", "https://i.imgur.com/c5R8rIw.jpeg", 20, 385, 135, 7834100, "Certificate Template", "Create a certificate, fill in names, remove the background."],
|
||||
[0, 1629104378, "iHBHbCZa", "https://i.imgur.com/aQD9Sag.jpeg", 22, 748, 193, 2377221, "Invitation Template", "Invitation to a wedding, or another event."],
|
||||
[0, 1630428812, "9UxUbJCN", "https://i.imgur.com/Frw3kYf.jpg", 24, 83, 7, 134997, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630428912, "3oc152-w", "https://i.imgur.com/aYBFuRm.jpg", 24, 121, 36, 679575, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630428969, "NVFkyNcs", "https://i.imgur.com/t5id5Kt.jpg", 24, 57, 8, 95022, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429023, "dyYu8V2R", "https://i.imgur.com/GxcGicZ.jpg", 24, 90, 16, 127499, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429086, "6Gdn2pwo", "https://i.imgur.com/79Z8Pnd.jpg", 24, 68, 13, 113625, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429128, "ZuKHrH7J", "https://i.imgur.com/fvv7Pws.jpg", 24, 111, 14, 116841, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429191, "6tTfZHbs", "https://i.imgur.com/s3akkXn.jpg", 24, 88, 53, 120870, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429229, "37OCXBSu", "https://i.imgur.com/TqXYjbU.jpg", 24, 74, 4, 120778, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429291, "NAg6Ls7H", "https://i.imgur.com/znL9Df8.jpg", 24, 211, 39, 148372, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630429341, "56Hw3_oD", "https://i.imgur.com/KnkPJkX.jpg", 24, 80, 5, 112573, "Resume Template", "A free template for creating a resume (CV). Just load your own photo and replace the text."],
|
||||
[0, 1630662905, "EJ4La1Lj", "https://i.imgur.com/I5nfcch.jpg", 15, 606, 287, 21628, "Super! Neon Glow Sign", "3D text sign, replace the text with your own."],
|
||||
[0, 1630663028, "0o6neJfg", "https://i.imgur.com/kjNcAP1.jpg", 15, 310, 136, 146019, "Metallic Grey Sign", "3D text sign, replace the text with your own."],
|
||||
[0, 1630663169, "tpB6vZji", "https://i.imgur.com/kcbBgP1.jpg", 15, 1132, 558, 66063, "Fantastic Neon Sign", "3D text sign, replace the text with your own. Blue Neon on a purple background."],
|
||||
[0, 1630663242, "a75eYlc3", "https://i.imgur.com/493UB7b.jpg", 15, 2182, 1023, 166620, "Burning Sign", "3D text sign, replace the text with your own. Burning Fire on charcoal."],
|
||||
[0, 1630663298, "mGnCDNiW", "https://i.imgur.com/nsKbxB7.jpg", 15, 272, 119, 164790, "Horror Sign", "3D text sign, replace the text with your own."],
|
||||
[0, 1630663428, "ggzthM22", "https://i.imgur.com/dSec3Om.jpg", 15, 3015, 998, 208930, "Green Earth Sign", "3D Sign, replace text with your own. Green text on ferns."],
|
||||
[0, 1630663520, "jPDI_91H", "https://i.imgur.com/rQ2vvxq.jpg", 15, 436, 224, 14575, "Gelly Neon Sign", "3D Sign, replace text with your own. Cyan text on a purple background."],
|
||||
[0, 1630663624, "QkxqCgcu", "https://i.imgur.com/uyiNweu.jpg", 15, 1393, 555, 14299, "Ice Melting Sign", "3D Sign, replace text with your own. Blue Melting ice and snow."],
|
||||
[0, 1630679401, "I-Jhpwbr", "https://i.imgur.com/J8TaH3S.jpg", 15, 79, 7, 56570, "Retro Western Sign", "3D text sign, replace the text with your own. Burning Fire on charcoal."],
|
||||
[0, 1630679487, "WUAwYYzJ", "https://i.imgur.com/U6Hp7bo.jpg", 15, 395, 240, 15488, "Digital Text Template", "3D text sign, replace the text with your own. Burning Fire on charcoal."],
|
||||
[0, 1631191225, "vepAf3Sv", "https://i.imgur.com/uc21kTQ.png", 14, 90, 28, 14695, "Mom, can we have Meme", "Mom, can we have ABC? No, we have it at home. ABC at home: ... :)"],
|
||||
[0, 1634227357, "GI1g_yTu", "https://i.imgur.com/yaYnIpH.jpg", 15, 98, 44, 27032, "Summer 3D Sign", "Simple yellow and pink sign, add your text."],
|
||||
[0, 1634227567, "SNEAxMTl", "https://i.imgur.com/H9Jo542.jpg", 15, 33, 12, 266100, "Grafitti 3D Sign", "Simple street art sign, add your own text."],
|
||||
[0, 1634227700, "7mXU3fAC", "https://i.imgur.com/WsMACB4.jpg", 15, 54, 18, 2455001, "Grafitti Bricks 3D Sign", "Grafitti on a wall of bricks, add your own text."],
|
||||
[0, 1634227827, "Hi5YXMb8", "https://i.imgur.com/1Bu5hyH.jpg", 15, 34, 13, 73673, "Thorns Sign", "White thorns text on a green background, add your own text."],
|
||||
[0, 1634227937, "fHq0uQ0d", "https://i.imgur.com/aMovoiL.jpg", 15, 206, 73, 146209, "Under Water Sign", "3D text effect, water glossy sign."],
|
||||
[0, 1634228078, "qWHZKZSX", "https://i.imgur.com/97Y0HoM.jpg", 15, 742, 336, 17438, "Liquid Waves Sign", "Text with the effect of waves."],
|
||||
[0, 1634228222, "Hcm4YKZk", "https://i.imgur.com/rTYY3fw.jpg", 15, 186, 80, 109696, "Antique Wood Sign", "Text on a wooden wall."],
|
||||
[0, 1634228590, "0TYhEM4u", "https://i.imgur.com/LLdYexI.jpg", 15, 163, 77, 350400, "Vintage Distorted Sign", "Add your own text."],
|
||||
[0, 1634228655, "DLnbRplv", "https://i.imgur.com/FPJO5DY.jpg", 15, 92, 42, 18358, "Pink Sign", "Add your own text."],
|
||||
[0, 1634228783, "rh_aaIG7", "https://i.imgur.com/Tem2VN6.jpg", 15, 203, 133, 288858, "Sticker Sign", "Add your own text."],
|
||||
[1, 1595367974, "4OywckpH", "https://i.imgur.com/fRKNJn5.jpg", 60, 4750, 592, 126265, "Easter Eggs", "With this template you can make egg in any colour just with adjustments layers. Egg is made of shapes and can be scaled."],
|
||||
[2, 1622685868, "48W_yWwX", "https://i.imgur.com/N02oAhj.png", 0, 161, 42, 14834, "top text bottom text", "for memes"],
|
||||
[3, 1595367974, "GEiPiJ3G", "https://i.imgur.com/zc3YJra.jpg", 11, 1322, 626, 1485847, "Gaming Youtube Thumbnail", "Youtube thumbnail template for a gaming channel. Just replace text and images, and you're good to go!"],
|
||||
[3, 1595367974, "8zs_rsUM", "https://i.imgur.com/KmN9tiC.jpg", 11, 2963, 1327, 1051621, "Horror Youtube Thumbnail", "Youtube thumbnail template for a Horror channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "xQ_vr7Eq", "https://i.imgur.com/KdpcRSE.jpg", 11, 1917, 626, 734543, "Workout Youtube Thumbnail", "Youtube thumbnail template for fitness, gym, or bodybuilding channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "tkezvXHD", "https://i.imgur.com/mYLF9aS.jpg", 11, 6946, 2738, 2055732, "Comics Youtube Thumbnail", "Youtube thumbnail template for a comics channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "NSy6IRnK", "https://i.imgur.com/qEg5EHn.jpg", 11, 1487, 481, 1706991, "Recipe Youtube Thumbnail", "Youtube thumbnail template for a recipes channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "WGIT2_st", "https://i.imgur.com/olzR2zB.jpg", 11, 1188, 417, 1048752, "Travel Youtube Thumbnail", "Youtube thumbnail template for a travel channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "WrmaWefR", "https://i.imgur.com/RIrnm0j.jpg", 11, 1012, 303, 1830635, "Eco-friendly Youtube Thumbnail", "Youtube thumbnail template for an eco-friendly channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "ZvVT4ggb", "https://i.imgur.com/O9kqesI.jpg", 11, 3449, 1020, 316079, "Photo Youtube Thumbnail", "Youtube thumbnail template for a photography channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "arbbwc9D", "https://i.imgur.com/Vbxw71F.jpg", 11, 1702, 558, 311898, "Coach Youtube Thumbnail", "Youtube thumbnail template for a coach or expert channel. Just replace text and images and you're good to go!"],
|
||||
[3, 1595367974, "sSEIYsOY", "https://i.imgur.com/roj5ETE.jpg", 11, 2452, 736, 989638, "Fancy Vlog Youtube Thumbnail", "Youtube thumbnail template for a lifestyle channel. Just replace text and images and you're good to go!"],
|
||||
[4, 1600245541, "coMZ_M8b", "https://i.imgur.com/zgqKQeP.png", 60, 2643, 93, 7815, "File Icon", "File icon template for any file format."],
|
||||
[4, 1600246700, "Kz9gZey0", "https://i.imgur.com/sGx8FVU.png", 11, 1417, 518, 1257824, "Youtube Thumbnail Space", "Youtube Thumbnail for your videos."],
|
||||
[4, 1600246711, "rvDqZeC7", "https://i.imgur.com/gd3ne9l.jpg", 11, 3870, 900, 1400067, "Youtube Thumbnail Tower", "Youtube Thumbnail for your videos."],
|
||||
[5, 1625795091, "YRGR3E-U", "https://i.imgur.com/nBZJdmU.png", 60, 298, 34, 128714, "Magic Flame", "Customizable fantasy style flame with an anamorphic flare. Styles can easily be chosen with the included adjustment layers."],
|
||||
[5, 1625798662, "dUnVg0D1", "https://i.imgur.com/oCtvX6B.jpg", 60, 538, 90, 218936, "Lens Flare", "Customizable lens flare PSD."],
|
||||
[5, 1625853662, "m65gSYfi", "https://i.imgur.com/p12DNoU.jpg", 11, 633, 182, 600058, "Photopea Tutorial Thumbnail", "Thumbnail for a Photopea tutorial video"],
|
||||
[5, 1628046084, "KH04tLq4", "https://i.imgur.com/ybFRcYU.jpg", 2, 853, 176, 688471, "Digital Asset Pack Mockup", "Make a little box for your brushes, overlays, stock photos, actions, or other digital assets."],
|
||||
[5, 1628361677, "b_7ZUwAy", "https://i.imgur.com/xUs0LjP.jpg", 14, 123, 19, 88642, "Mel Gibson Talking to Bloody Jesus", "Jajaja"],
|
||||
[5, 1628703104, "msLJhWno", "https://i.imgur.com/34s8x3d.jpg", 15, 823, 83, 5540779, "Glow Text", "Based on https:\/\/www.youtube.com\/watch?v=AbSEtXJUtL0"],
|
||||
[5, 1629041967, "HRq1a4l8", "https://i.imgur.com/aC8xlNl.jpg", 11, 297, 37, 3950347, "Photopea Tutorial Thumbnail 2", "A better Photopea thumbnail template"],
|
||||
[5, 1630279132, "RfUelY4C", "https://i.imgur.com/T3IUzPP.jpg", 1, 671, 80, 11165478, "Desktop Wallpaper Mockup", "Show off how good your wallpaper would look on a computer screen!"],
|
||||
[5, 1630975261, "x4uKSbGB", "https://i.imgur.com/5OSkWex.jpg", 15, 1948, 774, 1755775, "Shockwave Text", "Made with https:\/\/www.deviantart.com\/yikuans\/art\/15-Smoke-Overlays-891103314 and https:\/\/www.deviantart.com\/yikuans\/art\/Lens-Flare-Components-Deluxe-888810787"],
|
||||
[5, 1631235943, "fD_Off7R", "https://i.imgur.com/ySsVrek.jpg", 15, 804, 115, 5805593, "Reflected logo", "cool"],
|
||||
[6, 1595367974, "Jh67Y-Kk", "https://i.imgur.com/bjZpfa7.png", 15, 9647, 4440, 34795, "Text styles", "Exclusive text style by UnBest"],
|
||||
[7, 1598889099, "E4bJER5O", "https://i.imgur.com/eFqMOhC.jpg", 2, 1233, 87, 3322433, "Box Mockups", "The best Box Mockup helps you to showcase packaging designs for the final presentation. You will see the smart layer in it that provides the easiness for amendment."],
|
||||
[7, 1598890123, "td7q9Ed-", "https://i.imgur.com/1OPNc0A.jpg", 2, 6656, 1105, 1172599, "Hanging Wall Sign", "Make your signage or logo presentation stand out with this photorealistic mock-up of an original round wall sign. The high-quality PSD file includes a smart layer where you can simply drag and drop your design."],
|
||||
[7, 1598890654, "nIOQ7tcZ", "https://i.imgur.com/4SF65vs.jpg", 0, 3895, 388, 6050131, "Shop Facade Logo", "Today we have for you a new logo mock-up of a shop facade that will make your branding design projects stand out. The PSD file includes smart objects so you can easily add your own design and create a flawless presentation"],
|
||||
[7, 1621609499, "pIJxJX-Q", "https://i.imgur.com/N0Vj2kB.jpg", 2, 5311, 676, 6226084, "realistic t-shirts mockup", "The best T-shirt Mockup which you can use freely to showcase your next t-shirt project. You can change the color of the t-shirt by applying background fill inside the smart object. You can change the inner color of the hanging t-shirt."],
|
||||
[7, 1621610343, "m-qAlc8j", "https://i.imgur.com/LSLy2rG.jpg", 2, 688, 60, 8544483, "Event Ticket Mockup", "Simple and clean ticket mockups. As always, mockups are easy to customize to your needs \u2013 you can present your ticket project within seconds"],
|
||||
[7, 1621614043, "1aY3Zns4", "https://i.imgur.com/yFsXitU.jpg", 2, 3515, 588, 2118187, "Floating Business Card Mockup", "Showcase your branding designs with flying business cards! \nyou can replace the front and the back design of the business card, change the background color, and fully customize your image"],
|
||||
[7, 1621614622, "EOyb6tTz", "https://i.imgur.com/AHZRIoV.jpeg", 0, 616, 62, 1036557, "Sticker Mockup", "An easy-to-use mockup for presenting sticker designs: Simply add your vector graphics to the smart layer and see how your sticker will look like in real life"],
|
||||
[7, 1621684704, "eZZan9uq", "https://i.imgur.com/I1so86M.jpg", 2, 669, 65, 4335274, "Box Mockups 2", "part 2\nThe best Box Mockup helps you to showcase packaging designs for the final presentation. You will see the smart layer in it that provides the easiness for amendment."],
|
||||
[7, 1621684973, "HRVbn1ou", "https://i.imgur.com/RO2JPfQ.jpg", 2, 412, 29, 2852154, "Box Mockups 3", "part 3 The best Box Mockup that helps you to showcase packaging designs for the final presentation. You will see the smart layer in it that provides the easiness for amendment."],
|
||||
[7, 1621685807, "Nu4BC58u", "https://i.imgur.com/7peolao.jpg", 2, 1768, 219, 1469641, "Vertical Business Card Mockup", "use the best vertical business card mockup PSD file for your next business project. This has the best perspective with clean photo-realistic looks. You can use this vertical business card mockup for a commercial or personal project."],
|
||||
[7, 1630692650, "jSMybe-7", "https://i.imgur.com/nsroJil.jpg", 0, 105, 14, 11583809, "smart band", "full editable smart band mockup"],
|
||||
[7, 1630692866, "7dtCSgfQ", "https://i.imgur.com/HVHhnY6.jpg", 0, 468, 66, 755808, "notebook", "full editable notebook mockup"],
|
||||
[7, 1630842968, "CAJ94Cb1", "https://i.imgur.com/Z3f4hYA.jpg", 0, 986, 106, 16173095, "cup mockup", "2 cups free mockup"],
|
||||
[7, 1630889315, "QlzjKw8s", "https://i.imgur.com/KKPkwB9.jpg", 0, 146, 26, 460085, "flash mockup", "free realistic flash mockup"],
|
||||
[7, 1630889666, "V1Bk5Fn4", "https://i.imgur.com/fq5V3NJ.jpg", 0, 259, 48, 1359291, "pin mockup", "realistic pin mockup"],
|
||||
[8, 1612277646, "T6OQWyRF", "https://i.imgur.com/fNAaMog.jpeg", 11, 6691, 2116, 5153440, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612277883, "YQWO2Nrf", "https://i.imgur.com/1BMXG66.jpg", 11, 5176, 1599, 3407042, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612277979, "059BeiwE", "https://i.imgur.com/wwhtrMi.jpg", 11, 4630, 1921, 5656427, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612278095, "GB7k2aof", "https://i.imgur.com/1WiOwg8.jpeg", 11, 2726, 659, 3455074, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278221, "Wl1P3KKX", "https://i.imgur.com/c3iYexa.jpeg", 0, 3163, 725, 8412690, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278296, "OGGk-r94", "https://i.imgur.com/WfSW6AL.jpg", 11, 1371, 325, 7331748, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278524, "6JbggYyc", "https://i.imgur.com/Av4atLh.jpg", 11, 1351, 335, 3485754, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/39G0pmv (CAMBIT Creates on YT)"],
|
||||
[8, 1612278898, "3EnNJiGg", "https://i.imgur.com/YD9z5jQ.jpg", 11, 1738, 691, 355184, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\nhttps:\/\/bit.ly\/3jbkfZL (CAMBIT Creates on YT)"],
|
||||
[8, 1612279032, "F7XgAax_", "https://i.imgur.com/IlCcfp0.jpg", 11, 4936, 1732, 3395167, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279087, "6i0sGHH5", "https://i.imgur.com/zO2QQl2.jpg", 11, 3108, 1031, 4980620, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279142, "yMbjJ7Ef", "https://i.imgur.com/CdxHXFO.jpg", 11, 1599, 733, 115667, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279191, "SlmPx69t", "https://i.imgur.com/juaoVK2.jpg", 11, 4771, 1892, 5447982, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1e16jpe9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612279361, "tFYDK8wL", "https://i.imgur.com/j8eJp9D.jpg", 11, 4362, 2169, 3102153, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279423, "YCX2nm4c", "https://i.imgur.com/x6tpywI.jpeg", 11, 6315, 2473, 6199030, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279471, "VKzHJVFB", "https://i.imgur.com/nwtki5N.jpg", 11, 11037, 3503, 2558479, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279519, "YK0vCVc0", "https://i.imgur.com/50UPxcv.jpg", 11, 7228, 2848, 2086745, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/184hzd6w (CAMBIT Creates on YT)"],
|
||||
[8, 1612279651, "o05JofbF", "https://i.imgur.com/PXRipnx.jpg", 11, 12855, 2270, 202002, "Among Us Thumbnail", "Simple, easily customizable Among Us Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/uy7x17cq (CAMBIT Creates on YT)"],
|
||||
[8, 1612280005, "k4GI2P3z", "https://i.imgur.com/TvZvM6C.jpeg", 11, 6347, 3160, 657807, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/2ewfvnn9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612280081, "m6x93Azo", "https://i.imgur.com/QV9SdiM.jpg", 11, 4763, 2109, 167582, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/2ewfvnn9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612280228, "7i7XCTEb", "https://i.imgur.com/AioZJTn.jpg", 11, 1495, 318, 215580, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\ntinyurl.com\/2ewfvnn9 (CAMBIT Creates on YT)"],
|
||||
[8, 1612280446, "k9XQB-8f", "https://i.imgur.com/R6VjyWk.jpg", 15, 69969, 14917, 121884, "Neon Sign", "Simple, easily customizable Neon Sign.\n\nVideo on how to customize this template:\ntinyurl.com\/i4sbjlcf (CAMBIT Creates on YT)"],
|
||||
[8, 1612280604, "SYx9-f-b", "https://i.imgur.com/zReKban.jpg", 11, 4234, 1074, 797316, "Apex Legends Thumbnail", "Simple, easily customizable Apex Legends Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/yyolbbpl (CAMBIT Creates on YT)"],
|
||||
[8, 1612280878, "bJRXRIfq", "https://i.imgur.com/h5N1C88.jpeg", 11, 5257, 1997, 4386550, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/3fcbp6b4 (CAMBIT Creates on YT)"],
|
||||
[8, 1612281260, "Ya6q0Tln", "https://i.imgur.com/zwbJQwV.jpg", 11, 12994, 4561, 4435004, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/cpdlji93 (CAMBIT Creates on YT)"],
|
||||
[8, 1612281457, "vKhoMzqP", "https://i.imgur.com/GZQ9gp2.jpg", 11, 2679, 692, 1044696, "Minecraft YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/y228jzgb (CAMBIT Creates on YT)"],
|
||||
[8, 1612281727, "tcyaiJYB", "https://i.imgur.com/83wrIJc.jpg", 11, 7090, 1643, 1028797, "Simple YouTube Logo", "Simple, easily customizable YouTube Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/14lfz8p0 (CAMBIT Creates on YT)"],
|
||||
[8, 1612281864, "2ZWRRzhf", "https://i.imgur.com/nGNM3QT.jpg", 11, 1064, 354, 2118021, "Call of Duty Thumbnail", "Simple, easily customizable Call of Duty Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/2bopuzm2 (CAMBIT Creates on YT)"],
|
||||
[8, 1612282028, "1ZOZbFH-", "https://i.imgur.com/2gB601B.jpg", 10, 424, 91, 729897, "Fall Logo", "Simple, easily customizable Fall Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/yzmft4jh (CAMBIT Creates on YT)"],
|
||||
[8, 1612282134, "PkMX3Lm9", "https://i.imgur.com/637ZNYy.jpg", 10, 460, 91, 7327824, "Fall Banner", "Simple, easily customizable Fall banner.\n\nVideo on how to customize this template:\ntinyurl.com\/85q28ayt (CAMBIT Creates on YT)"],
|
||||
[8, 1612282339, "iDpXkmYb", "https://i.imgur.com/fmuYmD4.jpg", 11, 5886, 1924, 2805682, "Simple YouTube Thumbnail", "Simple, easily customizable YouTube Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/35wu84qd (CAMBIT Creates on YT)"],
|
||||
[8, 1612282573, "wc9mhU6q", "https://i.imgur.com/IJkOhav.jpeg", 11, 1954, 563, 632116, "Roblox Thumbnail", "Simple, easily customizable Roblox Thumbnail.\n\nVideo on how to customize this template:\ntinyurl.com\/4zbntnbf (CAMBIT Creates on YT)"],
|
||||
[8, 1612282817, "p3tlvANF", "https://i.imgur.com/DmjI4Pj.jpeg", 11, 6406, 1607, 2123701, "Simple YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to customize this template:\ntinyurl.com\/3w3ufotm (CAMBIT Creates on YT)"],
|
||||
[8, 1612285645, "TlFSLsyK", "https://i.imgur.com/6GgFioO.jpg", 11, 1715, 487, 882640, "Simple YouTube End Screen", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to customize this template:\ntinyurl.com\/3l54vja8 (CAMBIT Creates on YT)"],
|
||||
[8, 1612365440, "0oq9raSA", "https://i.imgur.com/cSpmvJF.jpg", 10, 1158, 277, 121585, "Roblox Logo", "Simple, easily customizable Roblox Logo.\n\nVideo on how to customize this template:\ntinyurl.com\/1csgij7z (CAMBIT Creates on YT)"],
|
||||
[8, 1612545406, "duzu5AMd", "https://i.imgur.com/Cublu8K.jpg", 15, 37161, 11775, 57591, "Golden Text", "Simple, easily customizable Golden Text.\n\nVideo on how to make this golden text is on my YouTube.\n(CAMBIT Creates on YT)"],
|
||||
[8, 1612810564, "mfOWPzLQ", "https://i.imgur.com/XTWQNAs.jpg", 11, 3796, 694, 611504, "Minecraft Thumbnail", "Simple, easily customizable Minecraft Thumbnail.\n\nVideo on how to make this template is on my YouTube\n(CAMBIT Creates on YT)"],
|
||||
[8, 1613762354, "QBy-usaD", "https://i.imgur.com/K4qYD4Q.jpeg", 11, 1793, 420, 1411901, "Roblox Arsenal YouTube Banner", "Simple, easily customizable YouTube banner.\n\nVideo on how to make this is at:\nCAMBIT Creates on YT"],
|
||||
[8, 1613940663, "7zAwU9Ts", "https://i.imgur.com/8YAlikJ.jpg", 11, 8285, 1959, 614035, "Fortnite Highlights Thumbnail", "Simple, easily customizable Fortnite Highlights Thumbnail.\n\nVideo on how to make this:\nCAMBIT Creates on YT"],
|
||||
[8, 1615230335, "vuyTuGtk", "https://i.imgur.com/paF54NZ.jpg", 11, 9130, 4210, 201278, "80s Retro Banner", "Tutorial on how to make this banner will be at CAMBIT Creates on YouTube!\n\nhttps:\/\/www.youtube.com\/channel\/UCUYghcyi3yBoBFUiW94EdWw"],
|
||||
[8, 1616426647, "bNZxrnSq", "https://i.imgur.com/Df6rJGa.jpeg", 10, 2676, 840, 72047, "Simple Stream Overlay", "Simple, easily customizable Stream Overlay.\n\nVideo on how to customize this template:\n (CAMBIT Creates on YT)"],
|
||||
[8, 1617376577, "vxP4nbZR", "https://i.imgur.com/chLmQSy.jpeg", 11, 2294, 861, 468545, "Simple YouTube End Screen (Glowing)", "Simple, easily customizable YouTube End Screen.\n\nVideo on how to make this template:\n(CAMBIT Creates on YT)"],
|
||||
[8, 1617814260, "W9PFcnhB", "https://i.imgur.com/Ztd1eRr.jpg", 10, 5580, 2129, 37400, "Stream Starting Soon Screen", "Simple, easily customizable Starting Soon Screen.\n\nVideo on how to customize this template:\n(CAMBIT Creates on YT)"],
|
||||
[8, 1626448684, "c7DNJHqq", "https://i.imgur.com/yywoZnI.jpeg", 11, 1759, 1078, 49687, "Clean Thumbnail", "If you want to know how to create this thumbnail in under 5 minutes check out my channel CAMBIT Creates!\nhttps:\/\/www.youtube.com\/channel\/UCUYghcyi3yBoBFUiW94EdWw"],
|
||||
[8, 1632407126, "zWz6k8at", "https://i.imgur.com/h990yTB.jpeg", 11, 227, 62, 202989, "Simple Discord Banner", "Check out my channel for a tutorial on how to make this from scratch! (CAMBIT Creates)"],
|
||||
[9, 1597183310, "j_mZxB8z", "https://i.imgur.com/u5T0u7Q.jpg", 11, 2964, 429, 821464, "Minecraft Gaming Thumbnail", "This is for yt!"],
|
||||
[9, 1598368072, "xu8aeYHz", "https://i.imgur.com/Hoz56X2.jpg", 11, 2993, 610, 224548, "New Minecraft Thumbnail", "I made one a month back which sucked so I made a better one"],
|
||||
[10, 1598657100, "aMMhldj_", "https://i.imgur.com/2FRfEDZ.jpg", 11, 6754, 1845, 2661555, "Minecraft Thumbnail", "Steve skin in diamond armor. Overall its quite basic"],
|
||||
[10, 1604604359, "QBwCLOcd", "https://i.imgur.com/qR5zqbJ.jpg", 11, 2182, 188, 10314629, "Krunker Thumbnail", "multiple krunker renders that i made (im new to blender so dont judge them too badly lol)\n\nsandstorm background"],
|
||||
[11, 1632327234, "-iBtEQaJ", "https://i.imgur.com/oxlGC1M.jpg", 0, 36, 2, 339502, "gettyimages-469525152-2048x2048", "miles teller, Daniel Sharman and roman kemp"],
|
||||
[11, 1632327324, "iIjJcG8H", "https://i.imgur.com/i0akUp5.jpg", 0, 45, 0, 2033588, "gettyimages-469525152-2048x2048", "miles teller, Daniel Sharman, roman kemp"],
|
||||
[12, 1602750897, "Di40vm7k", "https://i.imgur.com/s9syupL.jpeg", 11, 3766, 540, 3056763, "FIFA THUMBNAIL", "Very nice made with photophea thumbnail."],
|
||||
[13, 1603211815, "C0QsdbO5", "https://i.imgur.com/XRPMiYy.jpg", 10, 5343, 1005, 8213, "Custom Discord Profile Picture (by \"food\") (360 x 360) for higher resolution", "I made this for people that want to customize the default Discord profile picture, I included all the default colors Discord uses"],
|
||||
[13, 1606764477, "kwOGg8Zh", "https://i.imgur.com/WdRWr9c.png", 10, 1865, 183, 17095, "Custom Google Profile Picture (by \"food\")", "includes the colors i could find, sorry if the colors arent named its too much work and its too hard with photopea's renaming system, they should probably add a shortcut for renaming."],
|
||||
[14, 1603198820, "U7Bj-Jdg", "https://i.imgur.com/WPKgBWp.jpeg", 11, 1123, 231, 5015404, "Youtube FIFA 21 Channel art", "A template on FIFA 21 channel art template works for mobile and pc really well."],
|
||||
[14, 1607541653, "1bZwWzKb", "https://i.imgur.com/1dkRecR.jpeg", 11, 1175, 179, 6975285, "Forza Horizon 4 Banner", "The banner includes a montage of your favourite car or even Cars. As long side this they allow for a simple clean Text effect using drop shadows. This simple but amazing looking banner with take your YouTube channel to the next level and help you to exceed your potential."],
|
||||
[15, 1605273264, "GYoLS0pz", "https://i.imgur.com/7KXPfIl.jpg", 11, 15485, 5569, 273804, "Youtube thumbnail", "Heres a free youtube thumbnail design i made hope you like it..of you wish to get the paid version subscribe to my youtube channel https:\/\/www.youtube.com\/channel\/UCBE9xYAWoHw1GHqRdVxBGew"],
|
||||
[16, 1616781581, "z93Laqlr", "https://imgur.com/uOK1zhK.png", 60, 4508, 1770, 1910452, "Galaxy TEXT", "."],
|
||||
[16, 1620844102, "4-xlugRN", "https://imgur.com/Mmr2WjP.jpg", 60, 387, 58, 265983, "\u0643\u0644 \u0639\u0627\u0645 \u0648\u0627\u0646\u062a\u0645 \u0628\u062e\u064a\u0631", "\u062a\u0635\u0645\u064a\u0645 \u0644\u0644\u0639\u064a\u062f"],
|
||||
[16, 1629536996, "9rq7Nw_l", "https://imgur.com/sYA72Cx.jpg", 11, 455, 103, 1013620, "Thumbnail \u0635\u0648\u0631\u0629 \u0645\u0635\u063a\u0631\u0629", "Make thumbnails more beautiful\nhttps:\/\/youtube.com\/shorts\/8XfcSZk0Nrc?feature=share"],
|
||||
[17, 1622444359, "62J0PiM7", "https://i.imgur.com/w9EgIbl.jpg", 60, 263, 21, 247812, "AR Project", "This is my first project"],
|
||||
[18, 1620721566, "NRbukwhO", "https://i.imgur.com/g1Iy9su.png", 10, 53, 11, 21372, "Games Bulletin Template", "Template for Games Bulletin social media posts"],
|
||||
[19, 1622493012, "mo_y1HyY", "https://i.imgur.com/f4zBvLe.jpg", 60, 460, 84, 12549, "Cool gradient", "gradient"],
|
||||
[20, 1632414539, "Lcqt4u_1", "https://i.imgur.com/xUi9twt.jpg", 10, 16, 1, 396526, "Plastic Blister Pack Water Drop Text!", "I came up with a way to make a plastic blister pack looking effect for Live text, and thought to myself \"do you know what would make this better? Water drops. That's what.\"\n\nChange the colour of the Background with the Hue\/Sat layer, and edit the text inside the folder to whatever you want."],
|
||||
[21, 1617732379, "4Hk284Nq", "https://i.imgur.com/k6dZNCy.jpg", 11, 578, 221, 3011056, "Minecraft SMP Thumbnail Template", "a minecraft smp template for streaming"],
|
||||
[21, 1617735597, "94-zclTY", "https://i.imgur.com/hABMF62.jpg", 10, 252, 54, 3072579, "Minecraft SMP Stream Thumbnail TWITCH", "a mcyt thumbnail for streaming minecraft using twitch"],
|
||||
[22, 1620403500, "ZqudmdoC", "https://i.imgur.com/IsEkqlY.jpg", 15, 543, 178, 262831, "Nice wallpaper", "Nice wallpaper; took me a while to make."],
|
||||
[22, 1620404248, "ooWyoz0u", "https://i.imgur.com/os1vh9b.jpg", 15, 1923, 395, 370401, "SKI-FI wallpaper", "Nice wallpaper i made. C:"],
|
||||
[23, 1614393788, "GQRv9aFo", "https://i.imgur.com/Y9m2HVa.jpeg", 1, 6573, 701, 9704224, "iphone", "test"],
|
||||
[23, 1614395732, "tLpM7Lly", "https://i.imgur.com/my8oeAK.jpg", 1, 3266, 352, 3567483, "iphone titled to the left", "random"],
|
||||
[23, 1614396765, "9sRjdsMT", "https://i.imgur.com/ZK6lIkV.jpeg", 0, 1130, 118, 4447633, "iphone tilted to the right", "yes"],
|
||||
[24, 1615045168, "Q12Hvy5d", "https://i.imgur.com/fTDxSRv.jpg", 10, 456, 182, 5613154, "NInjago Season 13 stlye", "Ninjago Season 13 banner"],
|
||||
[24, 1615045594, "352TwOrD", "https://i.imgur.com/snWdYVo.png", 15, 1175, 292, 55701, "Ninjago Season 13 stlye", "This is the Ninjago Season 13 stlye"],
|
||||
[24, 1615047605, "4yWD_8hI", "https://i.imgur.com/2N2D141.jpg", 10, 1609, 420, 308238, "Fortnite banner!", "Fortnite banner!Fortnite banner!Fortnite banner!"],
|
||||
[24, 1615048040, "zCqH4lY1", "https://i.imgur.com/QICJWyE.jpg", 10, 1098, 379, 206304, "among us banner", "among us banneramong us banneramong us banneramong us banneramong us banneramong us banner"],
|
||||
[25, 1615309871, "KZzV-qQR", "https://i.imgur.com/N2IPM01.jpg", 0, 378, 27, 34390, "good Vibes", "enjoy a good vibe"],
|
||||
[26, 1615334202, "Kivqmvgr", "https://i.imgur.com/5IMMR2G.png", 11, 2064, 1140, 227525, "ROBLOX Badge\/Gamepass Templater", "This is ROBLOX Badge template. You can change the text, color, color of text and the shadow of the text."],
|
||||
[26, 1615599668, "h8OeTUtO", "https://i.imgur.com/TeefGph.jpeg", 11, 3027, 980, 583391, "Game Icon Template (GFX Included)", "This pack allows you to create your very own ROBLOX game icon! you can change the color of almost anything! Making sure to subscribe to Carlite!"],
|
||||
[26, 1615683550, "_KA2EyJG", "https://i.imgur.com/Gls34vo.jpg", 11, 1292, 364, 25175, "Sun Burst Effect Template", "This template allows you to change the color of this effect and customize it to your liking. Subscribe to Carlite!"],
|
||||
[26, 1616251206, "I0LVYyX6", "https://i.imgur.com/iT3n3AL.jpeg", 11, 859, 193, 39322, "Two Sided Sun Burst Effect", "This is a two sided verison of my previous Sun Burst Effect"],
|
||||
[26, 1617326910, "Z_inAAOD", "https://i.imgur.com/m3VDUFD.png", 0, 134, 38, 3408721, "com sheet template", "this is just for me"],
|
||||
[27, 1625104988, "VwiQovcI", "https://i.imgur.com/fKnhPJj.jpg", 0, 152, 1, 244050, "honeypsd_promo_template___it_s_a_chris_pine__by_honeypsds_ddlslez", "hahaha"],
|
||||
[28, 1616942503, "huZXjuX1", "https://i.imgur.com/a2XjVFg.jpg", 10, 215, 10, 189959, "KARL SMP DESKTOP WALLPAPER", "lol"],
|
||||
[29, 1617225029, "MmH4Db4U", "https://i.imgur.com/3gevbcO.png", 60, 1006, 463, 21018, "FREE HEADER", "This is for A Discord server embed thing"],
|
||||
[29, 1617225539, "iJ2A7RQJ", "https://i.imgur.com/PBowCOq.png", 11, 11164, 3081, 999948, "LOGO", "NICE SIMPLE LOGO"],
|
||||
[29, 1618059986, "C-i3hDXq", "https://imgur.com/Fs2AiHN.png", 15, 8321, 3670, 63526, "Simple Text", "This is some simple text made by me \n\nCheck out my YT \"snipexX Krunker\" Maybe consider subscribing"],
|
||||
[29, 1618499068, "K9nzsswu", "https://imgur.com/SvwzemC.png", 11, 5181, 1538, 97935, "YouTube Banner", "*FREE* YouTube banner *SUB TO SNIPEXX KRUNKER*"],
|
||||
[30, 1617812120, "bw6XjavJ", "https://i.imgur.com/g15LYOu.png", 0, 369, 119, 54663, "Rainbow Text", "made for bored people."],
|
||||
[31, 1625731532, "F3olqmRn", "https://i.imgur.com/aGpQG98.jpeg", 0, 425, 44, 2463262, "Car edit template", "Yuh template for your edits"],
|
||||
[32, 1620077746, "MGH2R3BT", "https://doodle.likes-throwing.rocks/hPgxIT.png", 10, 334, 89, 46160, "Advanced Green Logo", "Logo for Social Media"],
|
||||
[33, 1620325415, "Mw7glS1F", "https://i.imgur.com/Df6rJGa.jpeg", 10, 559, 11, 165700, "Devil\/ Demon Logo Background", "Devil\/ Demon Logo Background"],
|
||||
[35, 1620471080, "qwLFo-Ge", "https://www.mediafire.com/convkey/2e98/3si98z0owtkc47bzg.jpg", 0, 8525, 1138, 3421739, "3D glass logo mockup", "I do not own this it is downloaded from graphicsfamily.com .\ndownload the license here \ud83d\udc47\nhttps:\/\/www.mediafire.com\/file\/wbv00o8cu0mda5y\/license-graphicsfamily.com.txt\/file ."],
|
||||
[36, 1629492534, "EtDkSkzB", "https://i.imgur.com/VN6E2Tv.jpg", 0, 102, 16, 421959, "cat", "e"],
|
||||
[37, 1621614200, "oPeG_W35", "https://i.imgur.com/Gn5frkB.jpg", 0, 310, 3, 31338, "419 certo", "."],
|
||||
[38, 1622229976, "nWGP1LsW", "https://i.imgur.com/q3qYTNs.jpg", 14, 134, 12, 214048, "mustard watermark", "if anyone other than me is seeing this, hi\nalso this probably wont make any sense"],
|
||||
[39, 1622537993, "LAkd3-x2", "https://i.imgur.com/C4rSgka.jpg", 0, 157, 4, 106473, "BRGD_PRPLSC", "x"],
|
||||
[39, 1622540223, "3dCam5QB", "https://i.imgur.com/4SvJZN0.jpg", 0, 205, 130, 114460, "brgdxx", "x"],
|
||||
[40, 1622839505, "4Ku2WmVR", "https://i.imgur.com/omtF6vQ.jpg", 14, 386, 88, 128075, "Did you do it?", "Did you do it? meme template"],
|
||||
[40, 1622840236, "VMbqtsu4", "https://i.imgur.com/Qq4dMRA.jpg", 14, 459, 48, 194986, "Dipper Pines Holds Something Worthless template", "Dipper Pines Holds Something Worthless template"],
|
||||
[40, 1622840439, "ij8jWBhb", "https://i.imgur.com/denHdM3.jpg", 14, 265, 51, 195866, "Dog Suffocate Owner Template", "Dog Suffocate Owner Template"],
|
||||
[40, 1622841217, "8Fou82xE", "https://i.imgur.com/VqhRsGx.jpg", 14, 422, 59, 53079, "Is this a pigeon? template", "Is this a pigeon? template"],
|
||||
[41, 1623654168, "O7L4yHSk", "https://i.imgur.com/pOfHmt0.jpg", 60, 155, 5, 7023017, "How To Make Your Own Fut Card", "Hello"],
|
||||
[42, 1623684212, "qd4M8zOd", "https://i.imgur.com/lgTMO8i.jpeg", 11, 96, 17, 88409, "YouTube Urdu Template", "YouTube Urdu Template Sample"],
|
||||
[43, 1624248813, "VBLu29m0", "https://i.imgur.com/GTNaMfp.jpg", 0, 749, 29, 114663, "1123", "standard bc"],
|
||||
[44, 1624250868, "6jjYRIK8", "https://i.imgur.com/CvBUH76.jpg", 60, 243, 23, 1255897, "COPA AMERICA TEMPLATE BY MOBUTER | Mobuter | Copa America | Facebook | Poster | Cinematic Poster | Argentina", "This template is specially created for COPA AMERICA. Supporters of any country can use this template to show his\/her love for football. Just need to update the smart object of flag and text. Add your own photo to take the poster to the next level. For more visit-\nhttps:\/\/www.youtube.com\/Mobuter?sub_confirmation=1\n You can add a 3D cartoon to this template which you can create by watching this video-https:\/\/youtu.be\/voajMXLvjz0 Or search in YouTube writing- Mobuter Thanks!"],
|
||||
[45, 1624765694, "df1t2dMf", "https://i.imgur.com/FsQTvx2.jpg", 12, 247, 34, 85302, "meu socorro", "post_crist\u00e3o"],
|
||||
[46, 1625984385, "OgvsmnFT", "https://i.pinimg.com/originals/14/d4/11/14d411ef40a5351e7aea88c3c48ab54b.jpg", 60, 818, 23, 1981089, "Wildclaw Purple Lightning", "A wildclaw from FR. A skin for Thundercrack 2021."],
|
||||
[47, 1624643981, "yWT_i9T6", "https://i.imgur.com/51g5ffS.jpg", 11, 395, 75, 1650454, "Numerous's Template 1", "This is for Numerous and ONLY Numerous use with permission."],
|
||||
[48, 1624655052, "5EiLwvGX", "https://i.imgur.com/8Qu5Ueq.jpg", 0, 195, 33, 425016, "Apex Custom Legend Template", "Have you ever wanted to make a concept for a legend in Apex? Have you tried to make a template for it and failed? Have you ever tried to find someone else's template and found out it was deleted? Well no need to fret because I have a legend selection template just for you! Show your concepts to your friends and get them to use this template!\n\nMake sure to credit me for the template!"],
|
||||
[49, 1624657812, "GHkF3Mou", "https://i.imgur.com/sPW0v9V.jpg", 15, 1294, 35, 36361, "Rose Text Effect by Yellow Digital Tutorials", "Tutorial in Youtube \nhttps:\/\/www.youtube.com\/watch?v=jL4uM8dJI90"],
|
||||
[49, 1624674441, "mwUg3UG6", "https://i.imgur.com/T1zpinv.jpg", 15, 1706, 356, 54455, "Glossy Text Effect by Yellow Digital Tutorials", "Tutorial in YouTube : https:\/\/www.youtube.com\/watch?v=kg5D8NiDldo"],
|
||||
[49, 1624842793, "VgiEb_D3", "https://i.imgur.com/cyjMpQQ.jpg", 15, 814, 38, 57436, "Baby Text Effect by Yellow Digital Tutorials", "Link Tutorial in YouTube \nhttps:\/\/www.youtube.com\/watch?v=KKCLO0_3TP4"],
|
||||
[49, 1624855956, "0_YnQraA", "https://i.imgur.com/ouqtjlB.jpg", 15, 2796, 1063, 48111, "fish", "App Game Text Effect by Yellow Digital Tutorials \nLink Tutorial : https:\/\/www.youtube.com\/watch?v=CIrbS1S-UCA"],
|
||||
[49, 1624887509, "1-ksidjk", "https://i.imgur.com/OYShIr4.jpg", 15, 4508, 1225, 48457, "Cartoon Colorful 3d Text Style by Yellow Digital Tutorials", "Tutorial in YouTube : https:\/\/www.youtube.com\/watch?v=qrvl1l7GoFs"],
|
||||
[49, 1624915763, "dyCXT9nb", "https://i.imgur.com/N6LBH1a.jpg", 15, 499, 319, 40844, "Good Day Text Effect by Yellow Digital Tutorials", "Tutorial in YouTube https:\/\/www.youtube.com\/watch?v=Sf5dCfsRafE"],
|
||||
[49, 1624934633, "VSo90itD", "https://i.imgur.com/wT6mF2a.jpg", 15, 8370, 3014, 670084, "Movie Text Effect by Yellow Digital Tutorials", "Tutorial and materials in YouTube\nhttps:\/\/www.youtube.com\/watch?v=D-CijdRUMPg"],
|
||||
[49, 1624958209, "4X9O4-US", "https://i.imgur.com/9yqbWxI.jpg", 15, 7783, 3232, 361843, "Golden Text Effect by Yellow Digital Tutorials", "Tutorial and Materials in YouTube\nTUTORIAL AND PSD FREE : https:\/\/www.youtube.com\/watch?v=tG3GzTw0DGQ"],
|
||||
[50, 1625239468, "BdxX1rcB", "https://i.imgur.com/0WeyWY7.jpg", 11, 1441, 652, 180192, "cartoony text", "cartoony text for videos thumbnails pfps ect."],
|
||||
[50, 1625443408, "6o9cIDpG", "https://i.imgur.com/gJIPpWa.jpg", 11, 1005, 197, 72554, "Profile picture glitch text", "blue and purple glitch text profile picture."],
|
||||
[51, 1625590818, "GtNIHpaz", "https://i.imgur.com/wD8Z1Nt.jpg", 10, 158, 6, 142790, "INTENSE PACK (cool texts)", "9 super-Cool text types!"],
|
||||
[51, 1627499398, "4vHqG3W0", "https://i.imgur.com/igkymTP.jpg", 0, 53, 7, 164298, "Banner Template", "Youtube Banner Size"],
|
||||
[52, 1624972093, "DCsUFw7o", "https://i.imgur.com/Ot4tMVy.jpg", 0, 306, 11, 8548, "hidden_garden___psd_coloring_by_huntercolours_def8pwr", "."],
|
||||
[53, 1629820302, "NTBKwZIz", "https://i.imgur.com/xv9ZCvU.jpg", 0, 73, 2, 71425, "New Project", "jn"],
|
||||
[54, 1628202370, "5BwvORr8", "https://i.imgur.com/U5PtQGF.jpg", 0, 56, 15, 64600, "IMG_20200815_193941_705", "https:\/\/www.photopea.com\/#i5BwvORr8"],
|
||||
[55, 1625818870, "tA5uiPj8", "https://i.imgur.com/XrJVXQM.jpeg", 11, 960, 372, 234395, "how to make roblox shirt", "make it"],
|
||||
[55, 1625909124, "3X2LWJqe", "https://i.imgur.com/zTeF97n.jpeg", 11, 126, 47, 192499, "pfp template", "when exporting put width - 500 height - 500"],
|
||||
[55, 1626775582, "uTj4pcRF", "https://i.imgur.com/W6p1ZiI.png", 11, 303, 46, 684779, "pfp maker", "just download this font and add to photopea\nhttps:\/\/www.fontspace.com\/space-mission-font-f56190"],
|
||||
[55, 1627549093, "z9SdouTB", "https://i.imgur.com/R4qO2s7.png", 11, 8288, 1877, 703983, "pfp maker", "credits - hisho"],
|
||||
[55, 1628770660, "HUMyYWlX", "https://i.imgur.com/ClMIHPK.png", 0, 253, 48, 104116, "LOGO FOR COMPANY", "USE IT AND COMMENT"],
|
||||
[56, 1626088338, "xUnfhTXx", "https://i.imgur.com/RsT5jVT.jpg", 0, 339, 215, 5117923, "Putin_leader", "\u0446"],
|
||||
[56, 1626091600, "FmyOqI9S", "https://i.imgur.com/18v4CWa.jpg", 0, 514, 447, 4135409, "Putin_life", "1"],
|
||||
[57, 1628485322, "MWflTyYK", "https://i.imgur.com/t5prY97.jpg", 0, 71, 3, 237650, "4DD1E570-294A-493F-A43D-402A9A4A07C8", "Ifk"],
|
||||
[57, 1628485361, "Z5jDTI2L", "https://i.imgur.com/Y8M58bH.jpg", 0, 149, 31, 4778852, "delicate", "Idk"],
|
||||
[58, 1627891831, "ItUN_dOj", "https://i.imgur.com/0VM4unR.jpg", 0, 554, 87, 231517, "Y", "A"],
|
||||
[58, 1627892086, "YVDhGxNf", "https://i.imgur.com/u8SA3jw.jpg", 0, 242, 42, 127240, "y", "S"],
|
||||
[58, 1628424522, "x3OFSbz9", "https://i.imgur.com/VK0uH7V.jpg", 0, 23, 0, 1797771, "IMG-20210728-WA0001", "A"],
|
||||
[59, 1627615382, "-o4whTfv", "https://i.imgur.com/gX2fMrI.jpg", 0, 125, 5, 1508959, "image", "please work"],
|
||||
[60, 1628086640, "5Dfgbxrf", "https://i.imgur.com/ratio3:2/z9ej7qu.jpg", 0, 85, 0, 269512, "web", "pagina web"],
|
||||
[61, 1629087754, "dJCvL3Og", "https://i.imgur.com/qP6PqrK.jpg", 10, 1271, 366, 1853699, "Simple Discord Invite Banner", "Made By Tsukei"],
|
||||
[62, 1628048976, "HCJuDiuE", "https://i.imgur.com/N013KOO.jpg", 0, 111, 13, 34605, "Numerous's Project", "Only for my use."],
|
||||
[63, 1628055668, "XgReG6mC", "https://i.imgur.com/PGbwrvn.jpg", 0, 348, 50, 94832, "bkg-photopea", "logo placeholder"],
|
||||
[65, 1629388350, "XWuRyces", "https://i.imgur.com/kdA8CFA.jpg", 15, 975, 170, 104649, "Harry Potter Text", "Just a Harry Potter text for you lot"],
|
||||
[66, 1628737190, "5vdcBv5a", "https://i.imgur.com/gN5lgvs.jpg", 0, 149, 1, 1838897, "5359178-ai", "hehe"],
|
||||
[67, 1628830537, "5oZ8ODbR", "https://i.imgur.com/K3iUas0.png", 0, 27, 15, 1908, "Billionairegiant", "Gradient Template"],
|
||||
[68, 1628938216, "tY9XA2ZR", "https://i.imgur.com/e1b13Bz.jpg", 12, 89, 7, 15389, "footer_sablon", "Sade d\u00fcz"],
|
||||
[68, 1628938266, "3EKbTs2e", "https://i.imgur.com/BKiR8s0.jpg", 12, 105, 16, 262127, "SadeBannerli_footer_sablon_orj\u0131nal", "LogoOrtada"],
|
||||
[68, 1628938637, "H-Y21Jb0", "https://i.imgur.com/5HajfAG.jpg", 12, 92, 2, 83532, "firma ve okulsan logolu sablon", "Firma ve OkulsanLogo"],
|
||||
[70, 1628988881, "cFYdY4C1", "https://i.imgur.com/IVXr70t.jpg", 0, 223, 12, 85811, "Copy of Black and blue calligraphy logo - Made with PosterMyWall", "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"164.7pt\" height=\"50.9pt\" viewBox=\"0 0 164.7 50.9\" version=\"1.1\">\n<defs>\n<clipPath id=\"clip1\">\n <path d=\"M 0 0 L 164.699219 0 L 164.699219 50.898438 L 0 50.898438 Z M 0 0 \"\/>\n<\/clipPath>\n<\/defs>\n<g id=\"surface1\">\n<g clip-path=\"url(#clip1)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:12.587;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(10.594177%,9.812927%,9.423828%);stroke-opacity:1;stroke-miterlimit:4;\" d=\"M 6.875 502.90625 L 6.875 6.5 L 165.273438 6.5 L 165.273438 95.171875 L 233.242188 6.5 L 515.507813 6.5 L 515.507813 29.507813 L 536.210938 6.5 L 760.859375 6.5 L 806.953125 73.257813 L 806.953125 6.5 L 969.375 6.5 L 969.375 125.132813 L 1008.554688 125.132813 L 1008.554688 6.5 L 1288.515625 6.5 L 1288.515625 52.554688 L 1349.570313 52.554688 L 1379.53125 6.5 L 1635.273438 6.5 L 1319.609375 451.148438 C 1319.609375 451.148438 1258.554688 547.90625 1169.84375 476.5 L 1169.84375 502.90625 L 1001.640625 502.90625 L 1001.640625 385.484375 L 968.203125 385.484375 L 968.203125 502.945313 L 809.257813 502.945313 L 809.257813 428.101563 L 759.726563 502.90625 L 573.085938 502.90625 C 573.085938 502.90625 541.992188 506.421875 521.25 478.765625 L 521.25 502.945313 L 356.523438 502.945313 L 356.523438 433.804688 C 356.523438 433.804688 330 502.90625 283.945313 502.90625 Z M 6.875 502.90625 \" transform=\"matrix(0.1,0,0,-0.1,0,50.9)\"\/>\n<\/g>\n<path style=\" stroke:none;fill-rule:evenodd;fill:rgb(10.594177%,9.812927%,9.423828%);fill-opacity:1;\" d=\"M 116.042969 18.320313 C 116.160156 15.289063 116.921875 12.378906 118.558594 11.101563 C 122.097656 8.335938 126.28125 9.738281 128.578125 12.484375 C 135.898438 21.234375 141.777344 31.050781 148.195313 40.519531 L 138.207031 40.519531 L 135.359375 36.792969 L 125.539063 36.84375 L 125.539063 40.675781 L 115.960938 40.675781 L 116.011719 28.839844 L 130.035156 28.839844 L 124.332031 22.851563 L 124.332031 27.253906 L 116.015625 27.253906 L 116.050781 18.316406 Z M 94.910156 21.699219 L 104.167969 21.699219 L 104.167969 10.488281 L 112.175781 10.488281 L 112.175781 40.800781 L 104.167969 40.800781 L 104.167969 29.640625 L 94.910156 29.640625 Z M 85.382813 10.488281 L 93.460938 10.488281 L 93.460938 40.800781 L 85.382813 40.800781 Z M 74.597656 10.488281 L 80.152344 18.421875 L 53.429688 18.421875 L 53.429688 14.097656 C 53.429688 12.113281 55.054688 10.488281 57.039063 10.488281 Z M 61.359375 33.570313 L 80.171875 33.570313 L 74.605469 40.800781 L 57.035156 40.800781 C 55.050781 40.800781 53.425781 39.175781 53.425781 37.1875 L 53.425781 19.289063 L 61.359375 19.289063 Z M 40.050781 10.488281 L 47.984375 10.488281 L 47.984375 40.800781 L 40.050781 40.800781 Z M 18.175781 32.054688 L 24.089844 40.800781 L 33.304688 40.800781 L 27.816406 32.054688 C 30.15625 32.015625 32.054688 30.089844 32.054688 27.742188 L 32.054688 14.800781 C 32.054688 12.429688 30.113281 10.488281 27.742188 10.488281 L 5.367188 10.488281 L 5.367188 17.585938 L 23.988281 17.585938 L 23.988281 24.105469 L 13.257813 24.105469 L 13.257813 19.269531 L 5.367188 19.269531 L 5.367188 40.800781 L 13.316406 40.800781 L 13.316406 32.054688 Z M 18.175781 32.054688 \"\/>\n<\/g>\n<\/svg>"],
|
||||
[72, 1628991482, "u9l313e3", "https://i.imgur.com/nWJ0J5Q.jpg", 0, 64, 1, 83272, "\u0633\u064a\u0631\u0629 \u0630\u0627\u062a\u064a\u0629 \u0633\u0627\u0631\u0647 \u0633\u0644\u064a\u0645\u0627\u0646 \u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0648\u064a\u0635\u064a-pdf", "\u0633\u064a\u0631\u0647"],
|
||||
[73, 1629050963, "WCYMh4mk", "https://i.imgur.com/u9dl6rG.jpeg", 60, 231, 44, 1450212, "GFX Backround Template", "FREE TO USE GFX background template.\nSUBSCRIBE TO SAMBII AND FLX ON YOUTUBE!"],
|
||||
[74, 1631529385, "GQ9utkYZ", "https://i.imgur.com/vtLAm3g.jpeg", 11, 36, 6, 3294121, "SIMPLE ThumbNail TEMPLATE By VAPEG", "Hey Guys! Check OUT My CHANNEL @VAPEG https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\nYOU WILL SEE MANY [GUIDES] OF YOUR FAVOURITE EDITOR'S AS WELL AS PHOTOPEA."],
|
||||
[74, 1631530166, "1deXUBya", "https://i.imgur.com/6tgz8pm.jpeg", 11, 50, 7, 714754, "END SCREEN Template By VAPEG", "Please SUBSCRIBE Me On YOUTUBE : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1"],
|
||||
[74, 1631620466, "HHeORgBH", "https://i.imgur.com/D98yFRe.jpeg", 10, 108, 24, 1962821, "PubG & Free Fire LIVE STREAM [ T H U M B N A I L ] By VAPEG", "You Can Edit And Make Changes As You Like.\ud83d\ude0d\ud83d\ude0a\nPlz SUBSCRIBE Me On YOUTUBE : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\nENJOY THE TEMPLATE\u2764"],
|
||||
[74, 1631771616, "PePLP5Jc", "https://i.imgur.com/6vTsYCK.jpeg", 10, 115, 5, 1127715, "9 Comic Back Grounds By VAPEG", "ENJOY The COOL Comic BackGrounds\u2764\nPlease SUBSCRIBE Me On YOUTUBE : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\nTHANK YOU\u2764\ud83d\ude0d\u2714"],
|
||||
[74, 1632037970, "D7u5xS6P", "https://i.imgur.com/4ecwz2V.jpeg", 10, 80, 19, 391246, "Stream Starting Soon OVERLAY By VAPEG", "See How To Make It :\nhttps:\/\/www.youtube.com\/watch?v=cg1-emVS-E4\n Please SUBSCRIBE Me On YOUTUBE For More AMAZING FREE TEMPLATES : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\n\n\u2764ENJOY\u2764"],
|
||||
[75, 1629146214, "wyqvXT68", "https://i.imgur.com/KT3mdPF.jpg", 10, 558, 217, 121576, "Chrome Text Effect", "template for metal or chrome looking text"],
|
||||
[75, 1629146799, "jJRNzRr-", "https://i.imgur.com/hcxGm9k.jpg", 10, 230, 87, 142807, "Satin Text Template", "cool text template to use for your social media work"],
|
||||
[76, 1629267741, "zadOV-rr", "https://i.imgur.com/MZfM6Ww.jpg", 60, 49, 1, 30853, "Commission Sheet Template(Roblox)", "use this template to make a commission"],
|
||||
[77, 1629285705, "9uwF5PJP", "https://i.imgur.com/LKJrmit.png", 0, 49, 5, 2882, "Phone_Template", "Phone template"],
|
||||
[78, 1630446227, "XOQA7h14", "https://i.imgur.com/JhnXhCb.jpg", 0, 34, 2, 2221538, "TROJANS WIN HOME (2)", "FOR IMAAD ARAIN"],
|
||||
[78, 1630446276, "vUlCZ_ck", "https://i.imgur.com/HOvhF95.jpg", 0, 42, 1, 405992, "FINAL HOME (3)", "FOR IMAAD ARAIN"],
|
||||
[79, 1630890865, "rrxmQM9o", "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/i/92af585b-8e9b-4345-b3d2-bf7d1da1e96e/deq458k-4363adee-26aa-4df0-8f25-06d21f605c02.png/v1/fill/w_824,h_970,q_70,strp/quinn_by_waatsoned_by_waatsoned_deq458k-pre.jpg", 0, 80, 5, 449521, "Quinn", "Quinn Waaston"],
|
||||
[81, 1631298384, "DbuXUyc8", "https://i.imgur.com/bqz10Ww.png", 12, 126, 44, 3809255, "TEMPLATE PAULO CUENCA", "INSTAGRAM: https:\/\/www.instagram.com\/paulocuenca\/"],
|
||||
[81, 1631303255, "m6KrMrVL", "https://i.imgur.com/ihZbUqP.jpg", 12, 277, 65, 3551246, "( O NOVO MERCADO ) Market New", "INSTAGRAM: https:\/\/www.instagram.com\/onovomercado\/\nCREDITS: @fernandodgss"],
|
||||
[82, 1631526074, "QZrSm_gV", "https://i.imgur.com/OewcEvo.jpg", 0, 40, 3, 308847, "Salon", "Salon"],
|
||||
[82, 1631583232, "8Ir_62zo", "https://i.imgur.com/NJjTApm.jpg", 0, 27, 5, 26770188, "Salon 02", "Designer Sal\u00e3o"],
|
||||
[82, 1631586180, "w4sdzT8m", "https://i.imgur.com/BLw3UFk.jpg", 0, 164, 46, 1471293, "Salon 03", "Post para sal\u00e3o"],
|
||||
[82, 1631612688, "1nEfb3iN", "https://i.imgur.com/fEtqG2W.jpg", 0, 45, 4, 146254, "Celular", "Celphone Celular moble"],
|
||||
[82, 1631709097, "78HxLq10", "https://i.imgur.com/T9R3G3G.jpg", 0, 42, 5, 1030742, "Celphone", "Celular celphone smatphone"],
|
||||
[82, 1631725696, "WurfW7il", "https://i.imgur.com/VwNpbTT.jpg", 0, 79, 19, 7354678, "Nails", "Unhas"],
|
||||
[83, 1631890727, "Dkm9KCq1", "https://imgur.com/C7QkMnX.png", 11, 115, 13, 3230244, "PUBG Montage", "This Is A PUBG Montage Thumbnail it took a little effort to make you can use it to make Montage thumbnail\n\nCheck My Yt In This \nhttps:\/\/www.youtube.com\/channel\/UC8oXVQJGZofNrVd710F7lyA"],
|
||||
[84, 1631883793, "VpV2rUt3", "https://i.imgur.com/hxITnrd.jpeg", 11, 170, 89, 71522, "White balloon text", "Balloon text,a recreation of the gold sign by CAMBIT Creates,enjoy :)"],
|
||||
[85, 1631959647, "wTD8idfJ", "https://i.imgur.com/OeyjHzL.jpg", 0, 62, 1, 317067, "Untitled129_20210915135148", "Coca cola"],
|
||||
[86, 1632085792, "oGMxtV9w", "https://i.imgur.com/BvL7vsn.jpg", 0, 261, 55, 5044356, "Banner Template", "Banner Template For You To Use"],
|
||||
[86, 1632336680, "1ctA8x46", "https://i.imgur.com/fZ27O6L.jpg", 0, 150, 34, 18597049, "Banner Template", "Banner For You"],
|
||||
[87, 1632322203, "wJ2DnZQf", "https://i.imgur.com/tTi66G0.png", 11, 71, 1, 14158, "Epic Text", "This text along with the background is ideal for a thumbnail!\n(The thumbnail size is preset to the YouTube thumbnail standard)"],
|
||||
[88, 1632322094, "uYORwfcs", "https://i.imgur.com/GPx3EDQ.jpg", 3, 98, 16, 3321214, "book product", "bookcover"],
|
||||
[90, 1632416116, "cJSZjN8K", "https://i.imgur.com/8FJ9Gml.jpeg", 12, 50, 0, 3337609, "Turn Yourself INTO Venom", "IN THIS TEMPLATE YOU CAN CHANGE HALF VENOM FACE. ALSO YOU CAN CHANGE ALL THE TEXT AVAILIBLE IN THIS TEMPLATE.\nGuide On How To Use This Template:\nhttps:\/\/youtu.be\/-dgsXbe_TEU"]
|
||||
[19, 1622493012, "mo_y1HyY", "https://i.imgur.com/f4zBvLe.jpg", 60, 512, 90, 12549, "Cool gradient", "gradient"],
|
||||
[20, 1632414539, "Lcqt4u_1", "https://i.imgur.com/xUi9twt.jpg", 10, 46, 9, 396526, "Plastic Blister Pack Water Drop Text!", "I came up with a way to make a plastic blister pack looking effect for Live text, and thought to myself \"do you know what would make this better? Water drops. That's what.\"\n\nChange the colour of the Background with the Hue\/Sat layer, and edit the text inside the folder to whatever you want."],
|
||||
[21, 1617732379, "4Hk284Nq", "https://i.imgur.com/k6dZNCy.jpg", 11, 634, 251, 3011056, "Minecraft SMP Thumbnail Template", "a minecraft smp template for streaming"],
|
||||
[21, 1617735597, "94-zclTY", "https://i.imgur.com/hABMF62.jpg", 10, 274, 61, 3072579, "Minecraft SMP Stream Thumbnail TWITCH", "a mcyt thumbnail for streaming minecraft using twitch"],
|
||||
[22, 1620403500, "ZqudmdoC", "https://i.imgur.com/IsEkqlY.jpg", 15, 597, 198, 262831, "Nice wallpaper", "Nice wallpaper; took me a while to make."],
|
||||
[22, 1620404248, "ooWyoz0u", "https://i.imgur.com/os1vh9b.jpg", 15, 2083, 448, 370401, "SKI-FI wallpaper", "Nice wallpaper i made. C:"],
|
||||
[23, 1614393788, "GQRv9aFo", "https://i.imgur.com/Y9m2HVa.jpeg", 1, 7333, 807, 9704224, "iphone", "test"],
|
||||
[23, 1614395732, "tLpM7Lly", "https://i.imgur.com/my8oeAK.jpg", 1, 3624, 396, 3567483, "iphone titled to the left", "random"],
|
||||
[23, 1614396765, "9sRjdsMT", "https://i.imgur.com/ZK6lIkV.jpeg", 0, 1205, 134, 4447633, "iphone tilted to the right", "yes"],
|
||||
[24, 1615045168, "Q12Hvy5d", "https://i.imgur.com/fTDxSRv.jpg", 10, 487, 200, 5613154, "NInjago Season 13 stlye", "Ninjago Season 13 banner"],
|
||||
[24, 1615045594, "352TwOrD", "https://i.imgur.com/snWdYVo.png", 15, 1249, 309, 55701, "Ninjago Season 13 stlye", "This is the Ninjago Season 13 stlye"],
|
||||
[24, 1615047605, "4yWD_8hI", "https://i.imgur.com/2N2D141.jpg", 10, 1691, 444, 308238, "Fortnite banner!", "Fortnite banner!Fortnite banner!Fortnite banner!"],
|
||||
[24, 1615048040, "zCqH4lY1", "https://i.imgur.com/QICJWyE.jpg", 10, 1158, 408, 206304, "among us banner", "among us banneramong us banneramong us banneramong us banneramong us banneramong us banner"],
|
||||
[25, 1615309871, "KZzV-qQR", "https://i.imgur.com/N2IPM01.jpg", 0, 387, 27, 34390, "good Vibes", "enjoy a good vibe"],
|
||||
[26, 1615334202, "Kivqmvgr", "https://i.imgur.com/5IMMR2G.png", 11, 2277, 1277, 227525, "ROBLOX Badge\/Gamepass Templater", "This is ROBLOX Badge template. You can change the text, color, color of text and the shadow of the text."],
|
||||
[26, 1615599668, "h8OeTUtO", "https://i.imgur.com/TeefGph.jpeg", 11, 3288, 1087, 583391, "Game Icon Template (GFX Included)", "This pack allows you to create your very own ROBLOX game icon! you can change the color of almost anything! Making sure to subscribe to Carlite!"],
|
||||
[26, 1615683550, "_KA2EyJG", "https://i.imgur.com/Gls34vo.jpg", 11, 1391, 418, 25175, "Sun Burst Effect Template", "This template allows you to change the color of this effect and customize it to your liking. Subscribe to Carlite!"],
|
||||
[26, 1616251206, "I0LVYyX6", "https://i.imgur.com/iT3n3AL.jpeg", 11, 930, 210, 39322, "Two Sided Sun Burst Effect", "This is a two sided verison of my previous Sun Burst Effect"],
|
||||
[26, 1617326910, "Z_inAAOD", "https://i.imgur.com/m3VDUFD.png", 0, 142, 42, 3408721, "com sheet template", "this is just for me"],
|
||||
[27, 1625104988, "VwiQovcI", "https://i.imgur.com/fKnhPJj.jpg", 0, 178, 1, 244050, "honeypsd_promo_template___it_s_a_chris_pine__by_honeypsds_ddlslez", "hahaha"],
|
||||
[28, 1616942503, "huZXjuX1", "https://i.imgur.com/a2XjVFg.jpg", 10, 221, 10, 189959, "KARL SMP DESKTOP WALLPAPER", "lol"],
|
||||
[29, 1633222543, "ffYN3qDX", "https://i.imgur.com/SCm1rei.png", 0, 34, 1, 1716, "Blank Template - 1 row", "5 thumbnails"],
|
||||
[30, 1617225029, "MmH4Db4U", "https://i.imgur.com/3gevbcO.png", 60, 1090, 482, 21018, "FREE HEADER", "This is for A Discord server embed thing"],
|
||||
[30, 1617225539, "iJ2A7RQJ", "https://i.imgur.com/PBowCOq.png", 11, 12212, 3488, 999948, "LOGO", "NICE SIMPLE LOGO"],
|
||||
[30, 1618059986, "C-i3hDXq", "https://imgur.com/Fs2AiHN.png", 15, 9323, 4191, 63526, "Simple Text", "This is some simple text made by me \n\nCheck out my YT \"snipexX Krunker\" Maybe consider subscribing"],
|
||||
[30, 1618499068, "K9nzsswu", "https://imgur.com/SvwzemC.png", 11, 5701, 1729, 97935, "YouTube Banner", "*FREE* YouTube banner *SUB TO SNIPEXX KRUNKER*"],
|
||||
[31, 1617812120, "bw6XjavJ", "https://i.imgur.com/g15LYOu.png", 0, 383, 125, 54663, "Rainbow Text", "made for bored people."],
|
||||
[32, 1625731532, "F3olqmRn", "https://i.imgur.com/aGpQG98.jpeg", 0, 506, 63, 2463262, "Car edit template", "Yuh template for your edits"],
|
||||
[33, 1620077746, "MGH2R3BT", "https://doodle.likes-throwing.rocks/hPgxIT.png", 10, 351, 93, 46160, "Advanced Green Logo", "Logo for Social Media"],
|
||||
[34, 1620325415, "Mw7glS1F", "https://i.imgur.com/Df6rJGa.jpeg", 10, 616, 12, 165700, "Devil\/ Demon Logo Background", "Devil\/ Demon Logo Background"],
|
||||
[36, 1620471080, "qwLFo-Ge", "https://www.mediafire.com/convkey/2e98/3si98z0owtkc47bzg.jpg", 0, 10282, 1357, 3421739, "3D glass logo mockup", "I do not own this it is downloaded from graphicsfamily.com .\ndownload the license here \ud83d\udc47\nhttps:\/\/www.mediafire.com\/file\/wbv00o8cu0mda5y\/license-graphicsfamily.com.txt\/file ."],
|
||||
[37, 1629492534, "EtDkSkzB", "https://i.imgur.com/VN6E2Tv.jpg", 0, 122, 20, 421959, "cat", "e"],
|
||||
[38, 1621614200, "oPeG_W35", "https://i.imgur.com/Gn5frkB.jpg", 0, 344, 3, 31338, "419 certo", "."],
|
||||
[39, 1622229976, "nWGP1LsW", "https://i.imgur.com/q3qYTNs.jpg", 14, 155, 18, 214048, "mustard watermark", "if anyone other than me is seeing this, hi\nalso this probably wont make any sense"],
|
||||
[40, 1622537993, "LAkd3-x2", "https://i.imgur.com/C4rSgka.jpg", 0, 170, 4, 106473, "BRGD_PRPLSC", "x"],
|
||||
[40, 1622540223, "3dCam5QB", "https://i.imgur.com/4SvJZN0.jpg", 0, 230, 139, 114460, "brgdxx", "x"],
|
||||
[41, 1622839505, "4Ku2WmVR", "https://i.imgur.com/omtF6vQ.jpg", 14, 466, 109, 128075, "Did you do it?", "Did you do it? meme template"],
|
||||
[41, 1622840236, "VMbqtsu4", "https://i.imgur.com/Qq4dMRA.jpg", 14, 533, 61, 194986, "Dipper Pines Holds Something Worthless template", "Dipper Pines Holds Something Worthless template"],
|
||||
[41, 1622840439, "ij8jWBhb", "https://i.imgur.com/denHdM3.jpg", 14, 308, 69, 195866, "Dog Suffocate Owner Template", "Dog Suffocate Owner Template"],
|
||||
[41, 1622841217, "8Fou82xE", "https://i.imgur.com/VqhRsGx.jpg", 14, 467, 70, 53079, "Is this a pigeon? template", "Is this a pigeon? template"],
|
||||
[42, 1623654168, "O7L4yHSk", "https://i.imgur.com/pOfHmt0.jpg", 60, 177, 7, 7023017, "How To Make Your Own Fut Card", "Hello"],
|
||||
[43, 1623684212, "qd4M8zOd", "https://i.imgur.com/lgTMO8i.jpeg", 11, 112, 19, 88409, "YouTube Urdu Template", "YouTube Urdu Template Sample"],
|
||||
[44, 1624248813, "VBLu29m0", "https://i.imgur.com/GTNaMfp.jpg", 0, 859, 32, 114663, "1123", "standard bc"],
|
||||
[45, 1624250868, "6jjYRIK8", "https://i.imgur.com/CvBUH76.jpg", 60, 278, 25, 1255897, "COPA AMERICA TEMPLATE BY MOBUTER | Mobuter | Copa America | Facebook | Poster | Cinematic Poster | Argentina", "This template is specially created for COPA AMERICA. Supporters of any country can use this template to show his\/her love for football. Just need to update the smart object of flag and text. Add your own photo to take the poster to the next level. For more visit-\nhttps:\/\/www.youtube.com\/Mobuter?sub_confirmation=1\n You can add a 3D cartoon to this template which you can create by watching this video-https:\/\/youtu.be\/voajMXLvjz0 Or search in YouTube writing- Mobuter Thanks!"],
|
||||
[46, 1624765694, "df1t2dMf", "https://i.imgur.com/FsQTvx2.jpg", 12, 278, 37, 85302, "meu socorro", "post_crist\u00e3o"],
|
||||
[47, 1625984385, "OgvsmnFT", "https://i.pinimg.com/originals/14/d4/11/14d411ef40a5351e7aea88c3c48ab54b.jpg", 60, 1000, 28, 1981089, "Wildclaw Purple Lightning", "A wildclaw from FR. A skin for Thundercrack 2021."],
|
||||
[48, 1634920883, "2qgap3J3", "https://i.imgur.com/XOq0i89.jpg", 60, 56, 15, 142252, "Texto Sticker by Deluxe Tutorials", "Link del Tutorial en YouTube\nhttps:\/\/www.youtube.com\/watch?v=T6YVTsiryxk\nSuscribete y comparte el v\u00eddeo para m\u00e1s tutoriales de \u00e9stilos y ef\u00e9ctos textos en Photopea"],
|
||||
[49, 1624643981, "yWT_i9T6", "https://i.imgur.com/51g5ffS.jpg", 11, 457, 79, 1650454, "Numerous's Template 1", "This is for Numerous and ONLY Numerous use with permission."],
|
||||
[50, 1624655052, "5EiLwvGX", "https://i.imgur.com/8Qu5Ueq.jpg", 0, 220, 37, 425016, "Apex Custom Legend Template", "Have you ever wanted to make a concept for a legend in Apex? Have you tried to make a template for it and failed? Have you ever tried to find someone else's template and found out it was deleted? Well no need to fret because I have a legend selection template just for you! Show your concepts to your friends and get them to use this template!\n\nMake sure to credit me for the template!"],
|
||||
[51, 1624657812, "GHkF3Mou", "https://i.imgur.com/sPW0v9V.jpg", 15, 1500, 37, 36361, "Rose Text Effect by Yellow Digital Tutorials", "Tutorial in Youtube \nhttps:\/\/www.youtube.com\/watch?v=jL4uM8dJI90"],
|
||||
[51, 1624674441, "mwUg3UG6", "https://i.imgur.com/T1zpinv.jpg", 15, 2124, 520, 54455, "Glossy Text Effect by Yellow Digital Tutorials", "Tutorial in YouTube : https:\/\/www.youtube.com\/watch?v=kg5D8NiDldo"],
|
||||
[51, 1624842793, "VgiEb_D3", "https://i.imgur.com/cyjMpQQ.jpg", 15, 971, 44, 57436, "Baby Text Effect by Yellow Digital Tutorials", "Link Tutorial in YouTube \nhttps:\/\/www.youtube.com\/watch?v=KKCLO0_3TP4"],
|
||||
[51, 1624855956, "0_YnQraA", "https://i.imgur.com/ouqtjlB.jpg", 15, 3402, 1255, 48111, "fish", "App Game Text Effect by Yellow Digital Tutorials \nLink Tutorial : https:\/\/www.youtube.com\/watch?v=CIrbS1S-UCA"],
|
||||
[51, 1624887509, "1-ksidjk", "https://i.imgur.com/OYShIr4.jpg", 15, 5439, 1485, 48457, "Cartoon Colorful 3d Text Style by Yellow Digital Tutorials", "Tutorial in YouTube : https:\/\/www.youtube.com\/watch?v=qrvl1l7GoFs"],
|
||||
[51, 1624915763, "dyCXT9nb", "https://i.imgur.com/N6LBH1a.jpg", 15, 609, 376, 40844, "Good Day Text Effect by Yellow Digital Tutorials", "Tutorial in YouTube https:\/\/www.youtube.com\/watch?v=Sf5dCfsRafE"],
|
||||
[51, 1624934633, "VSo90itD", "https://i.imgur.com/wT6mF2a.jpg", 15, 10339, 3812, 670084, "Movie Text Effect by Yellow Digital Tutorials", "Tutorial and materials in YouTube\nhttps:\/\/www.youtube.com\/watch?v=D-CijdRUMPg"],
|
||||
[51, 1624958209, "4X9O4-US", "https://i.imgur.com/9yqbWxI.jpg", 15, 10078, 4168, 361843, "Golden Text Effect by Yellow Digital Tutorials", "Tutorial and Materials in YouTube\nTUTORIAL AND PSD FREE : https:\/\/www.youtube.com\/watch?v=tG3GzTw0DGQ"],
|
||||
[52, 1625239468, "BdxX1rcB", "https://i.imgur.com/0WeyWY7.jpg", 11, 1762, 732, 180192, "cartoony text", "cartoony text for videos thumbnails pfps ect."],
|
||||
[52, 1625443408, "6o9cIDpG", "https://i.imgur.com/gJIPpWa.jpg", 11, 1244, 257, 72554, "Profile picture glitch text", "blue and purple glitch text profile picture."],
|
||||
[53, 1625590818, "GtNIHpaz", "https://i.imgur.com/wD8Z1Nt.jpg", 10, 170, 17, 142790, "INTENSE PACK (cool texts)", "9 super-Cool text types!"],
|
||||
[53, 1627499398, "4vHqG3W0", "https://i.imgur.com/igkymTP.jpg", 0, 66, 8, 164298, "Banner Template", "Youtube Banner Size"],
|
||||
[54, 1624972093, "DCsUFw7o", "https://i.imgur.com/Ot4tMVy.jpg", 0, 339, 11, 8548, "hidden_garden___psd_coloring_by_huntercolours_def8pwr", "."],
|
||||
[55, 1629820302, "NTBKwZIz", "https://i.imgur.com/xv9ZCvU.jpg", 0, 79, 2, 71425, "New Project", "jn"],
|
||||
[56, 1628202370, "5BwvORr8", "https://i.imgur.com/U5PtQGF.jpg", 0, 60, 15, 64600, "IMG_20200815_193941_705", "https:\/\/www.photopea.com\/#i5BwvORr8"],
|
||||
[57, 1625818870, "tA5uiPj8", "https://i.imgur.com/XrJVXQM.jpeg", 11, 1282, 491, 234395, "how to make roblox shirt", "make it"],
|
||||
[57, 1625909124, "3X2LWJqe", "https://i.imgur.com/zTeF97n.jpeg", 11, 156, 62, 192499, "pfp template", "when exporting put width - 500 height - 500"],
|
||||
[57, 1626775582, "uTj4pcRF", "https://i.imgur.com/W6p1ZiI.png", 11, 368, 51, 684779, "pfp maker", "just download this font and add to photopea\nhttps:\/\/www.fontspace.com\/space-mission-font-f56190"],
|
||||
[57, 1627549093, "z9SdouTB", "https://i.imgur.com/R4qO2s7.png", 11, 11274, 2726, 703983, "pfp maker", "credits - hisho"],
|
||||
[57, 1628770660, "HUMyYWlX", "https://i.imgur.com/ClMIHPK.png", 0, 348, 57, 104116, "LOGO FOR COMPANY", "USE IT AND COMMENT"],
|
||||
[58, 1626088338, "xUnfhTXx", "https://i.imgur.com/RsT5jVT.jpg", 0, 370, 221, 5117923, "Putin_leader", "\u0446"],
|
||||
[58, 1626091600, "FmyOqI9S", "https://i.imgur.com/18v4CWa.jpg", 0, 657, 595, 4135409, "Putin_life", "1"],
|
||||
[59, 1628485322, "MWflTyYK", "https://i.imgur.com/t5prY97.jpg", 0, 87, 16, 237650, "4DD1E570-294A-493F-A43D-402A9A4A07C8", "Ifk"],
|
||||
[59, 1628485361, "Z5jDTI2L", "https://i.imgur.com/Y8M58bH.jpg", 0, 176, 48, 4778852, "delicate", "Idk"],
|
||||
[60, 1632684295, "SdKNZdCv", "https://i.imgur.com/UlQmSta.jpeg", 10, 630, 188, 62176, "Cool Looking Text", "Cool Looking Text (Free to Use)\n\nI Hope you Have a Nice Day! :D"],
|
||||
[61, 1627891831, "ItUN_dOj", "https://i.imgur.com/0VM4unR.jpg", 0, 659, 107, 231517, "Y", "A"],
|
||||
[61, 1627892086, "YVDhGxNf", "https://i.imgur.com/u8SA3jw.jpg", 0, 297, 45, 127240, "y", "S"],
|
||||
[61, 1628424522, "x3OFSbz9", "https://i.imgur.com/VK0uH7V.jpg", 0, 34, 0, 1797771, "IMG-20210728-WA0001", "A"],
|
||||
[62, 1627615382, "-o4whTfv", "https://i.imgur.com/gX2fMrI.jpg", 0, 148, 6, 1508959, "image", "please work"],
|
||||
[63, 1628086640, "5Dfgbxrf", "https://i.imgur.com/ratio3:2/z9ej7qu.jpg", 0, 116, 0, 269512, "web", "pagina web"],
|
||||
[64, 1629087754, "dJCvL3Og", "https://i.imgur.com/qP6PqrK.jpg", 10, 1697, 465, 1853699, "Simple Discord Invite Banner", "Made By Tsukei"],
|
||||
[65, 1628048976, "HCJuDiuE", "https://i.imgur.com/N013KOO.jpg", 0, 131, 16, 34605, "Numerous's Project", "Only for my use."],
|
||||
[66, 1628055668, "XgReG6mC", "https://i.imgur.com/PGbwrvn.jpg", 0, 396, 53, 94832, "bkg-photopea", "logo placeholder"],
|
||||
[69, 1629388350, "XWuRyces", "https://i.imgur.com/kdA8CFA.jpg", 15, 1323, 270, 104649, "Harry Potter Text", "Just a Harry Potter text for you lot"],
|
||||
[70, 1628737190, "5vdcBv5a", "https://i.imgur.com/gN5lgvs.jpg", 0, 200, 2, 1838897, "5359178-ai", "hehe"],
|
||||
[71, 1628830537, "5oZ8ODbR", "https://i.imgur.com/K3iUas0.png", 0, 29, 15, 1908, "Billionairegiant", "Gradient Template"],
|
||||
[72, 1628938216, "tY9XA2ZR", "https://i.imgur.com/e1b13Bz.jpg", 12, 127, 15, 15389, "footer_sablon", "Sade d\u00fcz"],
|
||||
[72, 1628938266, "3EKbTs2e", "https://i.imgur.com/BKiR8s0.jpg", 12, 125, 19, 262127, "SadeBannerli_footer_sablon_orj\u0131nal", "LogoOrtada"],
|
||||
[72, 1628938637, "H-Y21Jb0", "https://i.imgur.com/5HajfAG.jpg", 12, 115, 4, 83532, "firma ve okulsan logolu sablon", "Firma ve OkulsanLogo"],
|
||||
[74, 1628988881, "cFYdY4C1", "https://i.imgur.com/IVXr70t.jpg", 0, 272, 20, 85811, "Copy of Black and blue calligraphy logo - Made with PosterMyWall", "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"164.7pt\" height=\"50.9pt\" viewBox=\"0 0 164.7 50.9\" version=\"1.1\">\n<defs>\n<clipPath id=\"clip1\">\n <path d=\"M 0 0 L 164.699219 0 L 164.699219 50.898438 L 0 50.898438 Z M 0 0 \"\/>\n<\/clipPath>\n<\/defs>\n<g id=\"surface1\">\n<g clip-path=\"url(#clip1)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:12.587;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(10.594177%,9.812927%,9.423828%);stroke-opacity:1;stroke-miterlimit:4;\" d=\"M 6.875 502.90625 L 6.875 6.5 L 165.273438 6.5 L 165.273438 95.171875 L 233.242188 6.5 L 515.507813 6.5 L 515.507813 29.507813 L 536.210938 6.5 L 760.859375 6.5 L 806.953125 73.257813 L 806.953125 6.5 L 969.375 6.5 L 969.375 125.132813 L 1008.554688 125.132813 L 1008.554688 6.5 L 1288.515625 6.5 L 1288.515625 52.554688 L 1349.570313 52.554688 L 1379.53125 6.5 L 1635.273438 6.5 L 1319.609375 451.148438 C 1319.609375 451.148438 1258.554688 547.90625 1169.84375 476.5 L 1169.84375 502.90625 L 1001.640625 502.90625 L 1001.640625 385.484375 L 968.203125 385.484375 L 968.203125 502.945313 L 809.257813 502.945313 L 809.257813 428.101563 L 759.726563 502.90625 L 573.085938 502.90625 C 573.085938 502.90625 541.992188 506.421875 521.25 478.765625 L 521.25 502.945313 L 356.523438 502.945313 L 356.523438 433.804688 C 356.523438 433.804688 330 502.90625 283.945313 502.90625 Z M 6.875 502.90625 \" transform=\"matrix(0.1,0,0,-0.1,0,50.9)\"\/>\n<\/g>\n<path style=\" stroke:none;fill-rule:evenodd;fill:rgb(10.594177%,9.812927%,9.423828%);fill-opacity:1;\" d=\"M 116.042969 18.320313 C 116.160156 15.289063 116.921875 12.378906 118.558594 11.101563 C 122.097656 8.335938 126.28125 9.738281 128.578125 12.484375 C 135.898438 21.234375 141.777344 31.050781 148.195313 40.519531 L 138.207031 40.519531 L 135.359375 36.792969 L 125.539063 36.84375 L 125.539063 40.675781 L 115.960938 40.675781 L 116.011719 28.839844 L 130.035156 28.839844 L 124.332031 22.851563 L 124.332031 27.253906 L 116.015625 27.253906 L 116.050781 18.316406 Z M 94.910156 21.699219 L 104.167969 21.699219 L 104.167969 10.488281 L 112.175781 10.488281 L 112.175781 40.800781 L 104.167969 40.800781 L 104.167969 29.640625 L 94.910156 29.640625 Z M 85.382813 10.488281 L 93.460938 10.488281 L 93.460938 40.800781 L 85.382813 40.800781 Z M 74.597656 10.488281 L 80.152344 18.421875 L 53.429688 18.421875 L 53.429688 14.097656 C 53.429688 12.113281 55.054688 10.488281 57.039063 10.488281 Z M 61.359375 33.570313 L 80.171875 33.570313 L 74.605469 40.800781 L 57.035156 40.800781 C 55.050781 40.800781 53.425781 39.175781 53.425781 37.1875 L 53.425781 19.289063 L 61.359375 19.289063 Z M 40.050781 10.488281 L 47.984375 10.488281 L 47.984375 40.800781 L 40.050781 40.800781 Z M 18.175781 32.054688 L 24.089844 40.800781 L 33.304688 40.800781 L 27.816406 32.054688 C 30.15625 32.015625 32.054688 30.089844 32.054688 27.742188 L 32.054688 14.800781 C 32.054688 12.429688 30.113281 10.488281 27.742188 10.488281 L 5.367188 10.488281 L 5.367188 17.585938 L 23.988281 17.585938 L 23.988281 24.105469 L 13.257813 24.105469 L 13.257813 19.269531 L 5.367188 19.269531 L 5.367188 40.800781 L 13.316406 40.800781 L 13.316406 32.054688 Z M 18.175781 32.054688 \"\/>\n<\/g>\n<\/svg>"],
|
||||
[76, 1628991482, "u9l313e3", "https://i.imgur.com/nWJ0J5Q.jpg", 0, 105, 1, 83272, "\u0633\u064a\u0631\u0629 \u0630\u0627\u062a\u064a\u0629 \u0633\u0627\u0631\u0647 \u0633\u0644\u064a\u0645\u0627\u0646 \u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0648\u064a\u0635\u064a-pdf", "\u0633\u064a\u0631\u0647"],
|
||||
[77, 1629050963, "WCYMh4mk", "https://i.imgur.com/u9dl6rG.jpeg", 60, 355, 83, 1450212, "GFX Backround Template", "FREE TO USE GFX background template.\nSUBSCRIBE TO SAMBII AND FLX ON YOUTUBE!"],
|
||||
[78, 1631529385, "GQ9utkYZ", "https://i.imgur.com/vtLAm3g.jpeg", 11, 80, 33, 3294121, "SIMPLE ThumbNail TEMPLATE By VAPEG", "Hey Guys! Check OUT My CHANNEL @VAPEG https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\nYOU WILL SEE MANY [GUIDES] OF YOUR FAVOURITE EDITOR'S AS WELL AS PHOTOPEA."],
|
||||
[78, 1631530166, "1deXUBya", "https://i.imgur.com/6tgz8pm.jpeg", 11, 99, 28, 714754, "END SCREEN Template By VAPEG", "Please SUBSCRIBE Me On YOUTUBE : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1"],
|
||||
[78, 1631620466, "HHeORgBH", "https://i.imgur.com/D98yFRe.jpeg", 10, 177, 50, 1962821, "PubG & Free Fire LIVE STREAM [ T H U M B N A I L ] By VAPEG", "You Can Edit And Make Changes As You Like.\ud83d\ude0d\ud83d\ude0a\nPlz SUBSCRIBE Me On YOUTUBE : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\nENJOY THE TEMPLATE\u2764"],
|
||||
[78, 1631771616, "PePLP5Jc", "https://i.imgur.com/6vTsYCK.jpeg", 10, 194, 6, 1127715, "9 Comic Back Grounds By VAPEG", "ENJOY The COOL Comic BackGrounds\u2764\nPlease SUBSCRIBE Me On YOUTUBE : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\nTHANK YOU\u2764\ud83d\ude0d\u2714"],
|
||||
[78, 1632037970, "D7u5xS6P", "https://i.imgur.com/4ecwz2V.jpeg", 10, 172, 60, 391246, "Stream Starting Soon OVERLAY By VAPEG", "See How To Make It :\nhttps:\/\/www.youtube.com\/watch?v=cg1-emVS-E4\n Please SUBSCRIBE Me On YOUTUBE For More AMAZING FREE TEMPLATES : https:\/\/www.youtube.com\/channel\/UCk2xy9I9CiH3qqeaEVomnPQ?sub_confirmation=1\n\n\u2764ENJOY\u2764"],
|
||||
[79, 1629146214, "wyqvXT68", "https://i.imgur.com/KT3mdPF.jpg", 10, 750, 290, 121576, "Chrome Text Effect", "template for metal or chrome looking text"],
|
||||
[79, 1629146799, "jJRNzRr-", "https://i.imgur.com/hcxGm9k.jpg", 10, 317, 121, 142807, "Satin Text Template", "cool text template to use for your social media work"],
|
||||
[80, 1629267741, "zadOV-rr", "https://i.imgur.com/MZfM6Ww.jpg", 60, 60, 2, 30853, "Commission Sheet Template(Roblox)", "use this template to make a commission"],
|
||||
[81, 1629285705, "9uwF5PJP", "https://i.imgur.com/LKJrmit.png", 0, 59, 5, 2882, "Phone_Template", "Phone template"],
|
||||
[82, 1634471071, "PnKmiOnM", "https://i.imgur.com/wv2DRCy.jpeg", 11, 619, 111, 2153046, "Xenoz Anime Edit Thumbnail", "An anime edit thumbnail like xenoz or retuurn. Free naruto template. Tutorial on my channel: Trxnn"],
|
||||
[82, 1634584381, "701oL4kp", "https://i.imgur.com/bmSbBnW.jpeg", 11, 135, 25, 2526820, "Xenoz Thumbnail Anime Edit\/AMV", "Anime edit thumbnail like xenoz. Pls sub to me on yt\nAlso I have a tutorial on my channel - Trxnn"],
|
||||
[83, 1632641508, "zvciu30f", "https://i.imgur.com/ru9udpW.jpeg", 3, 149, 12, 454616, "TEMPLATE BINGKAI PRODUK", "Cocok untuk bingkai produk"],
|
||||
[84, 1630446227, "XOQA7h14", "https://i.imgur.com/JhnXhCb.jpg", 0, 39, 3, 2221538, "TROJANS WIN HOME (2)", "FOR IMAAD ARAIN"],
|
||||
[84, 1630446276, "vUlCZ_ck", "https://i.imgur.com/HOvhF95.jpg", 0, 68, 7, 405992, "FINAL HOME (3)", "FOR IMAAD ARAIN"],
|
||||
[85, 1630890865, "rrxmQM9o", "https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/i/92af585b-8e9b-4345-b3d2-bf7d1da1e96e/deq458k-4363adee-26aa-4df0-8f25-06d21f605c02.png/v1/fill/w_824,h_970,q_70,strp/quinn_by_waatsoned_by_waatsoned_deq458k-pre.jpg", 0, 91, 6, 449521, "Quinn", "Quinn Waaston"],
|
||||
[87, 1631298384, "DbuXUyc8", "https://i.imgur.com/bqz10Ww.png", 12, 263, 86, 3809255, "TEMPLATE PAULO CUENCA", "INSTAGRAM: https:\/\/www.instagram.com\/paulocuenca\/"],
|
||||
[87, 1631303255, "m6KrMrVL", "https://i.imgur.com/ihZbUqP.jpg", 12, 600, 148, 3551246, "( O NOVO MERCADO ) Market New", "INSTAGRAM: https:\/\/www.instagram.com\/onovomercado\/\nCREDITS: @fernandodgss"],
|
||||
[88, 1631526074, "QZrSm_gV", "https://i.imgur.com/OewcEvo.jpg", 0, 59, 3, 308847, "Salon", "Salon"],
|
||||
[88, 1631583232, "8Ir_62zo", "https://i.imgur.com/NJjTApm.jpg", 0, 50, 21, 26770188, "Salon 02", "Designer Sal\u00e3o"],
|
||||
[88, 1631586180, "w4sdzT8m", "https://i.imgur.com/BLw3UFk.jpg", 0, 254, 64, 1471293, "Salon 03", "Post para sal\u00e3o"],
|
||||
[88, 1631612688, "1nEfb3iN", "https://i.imgur.com/fEtqG2W.jpg", 0, 73, 7, 146254, "Celular", "Celphone Celular moble"],
|
||||
[88, 1631709097, "78HxLq10", "https://i.imgur.com/T9R3G3G.jpg", 0, 63, 7, 1030742, "Celphone", "Celular celphone smatphone"],
|
||||
[88, 1631725696, "WurfW7il", "https://i.imgur.com/VwNpbTT.jpg", 0, 104, 28, 7354678, "Nails", "Unhas"],
|
||||
[89, 1631890727, "Dkm9KCq1", "https://imgur.com/C7QkMnX.png", 11, 208, 23, 3230244, "PUBG Montage", "This Is A PUBG Montage Thumbnail it took a little effort to make you can use it to make Montage thumbnail\n\nCheck My Yt In This \nhttps:\/\/www.youtube.com\/channel\/UC8oXVQJGZofNrVd710F7lyA"],
|
||||
[90, 1631883793, "VpV2rUt3", "https://i.imgur.com/hxITnrd.jpeg", 11, 341, 147, 71522, "White balloon text", "Balloon text,a recreation of the gold sign by CAMBIT Creates,enjoy :)"],
|
||||
[90, 1632581135, "FenuZc-g", "https://i.imgur.com/sYe5BpV.jpeg", 10, 142, 18, 64603, "Twitter Banner Template", "Just a simple twitter banner."],
|
||||
[91, 1631959647, "wTD8idfJ", "https://i.imgur.com/OeyjHzL.jpg", 0, 86, 2, 317067, "Untitled129_20210915135148", "Coca cola"],
|
||||
[92, 1632085792, "oGMxtV9w", "https://i.imgur.com/BvL7vsn.jpg", 0, 909, 206, 5044356, "Banner Template", "Banner Template For You To Use"],
|
||||
[92, 1632336680, "1ctA8x46", "https://i.imgur.com/fZ27O6L.jpg", 0, 762, 214, 18597049, "Banner Template", "Banner For You"],
|
||||
[93, 1632322203, "wJ2DnZQf", "https://i.imgur.com/tTi66G0.png", 11, 186, 10, 14158, "Epic Text", "This text along with the background is ideal for a thumbnail!\n(The thumbnail size is preset to the YouTube thumbnail standard)"],
|
||||
[94, 1632322094, "uYORwfcs", "https://i.imgur.com/GPx3EDQ.jpg", 3, 478, 67, 3321214, "book product", "bookcover"],
|
||||
[96, 1632416116, "cJSZjN8K", "https://i.imgur.com/8FJ9Gml.jpeg", 12, 363, 32, 3337609, "Turn Yourself INTO Venom", "IN THIS TEMPLATE YOU CAN CHANGE HALF VENOM FACE. ALSO YOU CAN CHANGE ALL THE TEXT AVAILIBLE IN THIS TEMPLATE.\nGuide On How To Use This Template:\nhttps:\/\/youtu.be\/-dgsXbe_TEU"],
|
||||
[96, 1633028377, "1SpyzAog", "https://i.imgur.com/IMUvfrf.jpeg", 11, 44, 2, 344909, "Youtube Profile", "This template is easy and simple. All you Need is :\n1. Picture of yourself\n2. Channel Name\nand thats it you good to go.\nVisit My Youtube Channel:\nhttps:\/\/www.youtube.com\/channel\/UC54GM2-or9BFHnk03wXvLBw"],
|
||||
[97, 1634379541, "vECCFRRh", "https://i.imgur.com/9otnC14.png", 3, 34, 7, 81209, "Roblo-UI", "Hey, this UI is famous on games of Simulation! Get one, and click here!"],
|
||||
[97, 1634380514, "civ5Ljhr", "https://i.imgur.com/fZGwpLm.png", 3, 0, 0, 124191, "Roblox-Donation-Ui", "Change all of this Product\/Donation. Thank you. Follow me for more Ui!"],
|
||||
[97, 1634381017, "ESSiYyNd", "https://i.imgur.com/EVdtadh.jpeg", 10, 299, 81, 1091418, "Halloween Event 2021 Roblox", "You can change the \"Event 2021 Roblox\" If you want!. Thank you, follow me in https:\/\/discord.gg\/QtRMJypC"],
|
||||
[97, 1634385180, "PyN0vLOK", "https://i.imgur.com/rxhSHfn.png", 11, 53, 20, 105710, "Icon-Youtube", "Change the text \"P\" Thank you. Follow me in Roblox. :D"],
|
||||
[97, 1634385644, "eyKMo73X", "https://i.imgur.com/sqZlPZb.png", 11, 60, 10, 758702, "Icon-Youtube", "This is for Youtube, change the text \"G\" Thank you. :D"],
|
||||
[97, 1634385734, "uMgt9ONM", "https://i.imgur.com/PYzheEs.png", 11, 137, 50, 15328, "Icon-Youtube-3", "Change the text \"R\" Or if you want, you can. Thank you.:D"],
|
||||
[97, 1634409553, "iZjJtIAo", "https://i.imgur.com/4ZujvOf.png", 60, 119, 46, 5968137, "Icon-Game-Roblox", "Hey, you can disable the color of the \"3D Wallaper\" Thank you. :D"],
|
||||
[98, 1634559305, "r81-4WIp", "https://i.imgur.com/e55DD3j.jpg", 11, 554, 59, 246940, "squid game thumbnail", "used font\n\"game of squids\""],
|
||||
[99, 1632880040, "JOfUVSIs", "https://i.imgur.com/8qXD1Pt.jpeg", 0, 340, 48, 338466, "Gamer Logo", "You can change the text to whatever you want and you can use this logo for youtube, google profile, etc."],
|
||||
[100, 1633023246, "9d_MIdGX", "https://i.imgur.com/k3HKDl1.png", 60, 34, 0, 621, "Empty Scratch Scene", "The correct sizes for a scratch costume\/background. Has the dimensions of a scratch scene."],
|
||||
[101, 1633244394, "PGo_4LQd", "https://i.imgur.com/5M79VPf.jpeg", 11, 175, 95, 680837, "BedWars Thumbnail", "Hello World"],
|
||||
[102, 1633801636, "lg_ccns_", "https://i.imgur.com/EiMbPdG.jpeg", 11, 131, 4, 171807, "Cod Thumbnail", "Hi"],
|
||||
[102, 1634189690, "8hmuGzgn", "https://i.imgur.com/DCtv6Go.jpeg", 11, 170, 35, 416001, "Roblox Thumbnail", "by Tutorial Editing Tips Channel"],
|
||||
[102, 1634249222, "TZRJSdGc", "https://i.imgur.com/Q76a8ej.jpeg", 11, 35, 1, 71076, "End Screen", "By Tutorial Editing Tips Channel"],
|
||||
[103, 1634523054, "NCmazUKN", "https://i.imgur.com/2VKc3in.jpg", 0, 32, 1, 161407, "Invoice PSD for staffs", "For Roleplayer Sake"],
|
||||
[104, 1634298023, "aQpTN0SL", "https://i.imgur.com/FxF2pss.png", 1, 39, 7, 598, "New Project", "hi"],
|
||||
[105, 1634307267, "4DK5n8hv", "https://i.imgur.com/T9i1aHa.jpeg", 11, 37, 1, 717104, "Free Roblox Thumbnail Template", "Free Roblox Thumbnail Template for your YouTube thumbnails!"],
|
||||
[105, 1634507284, "W2zlgNuJ", "https://i.imgur.com/fHxlmUd.jpeg", 11, 24, 4, 777545, "Red Dead Redemption 2 Thumbnail", "A free Red Dead Redemption 2 Thumbnail for your videos.\n\nCanvas Size: 1280x720"],
|
||||
[106, 1634355979, "7Krg91qZ", "https://i.imgur.com/hXSShuB.jpg", 0, 18, 1, 461503, "New Project", "hamsters"],
|
||||
[107, 1634647452, "dxmJhzzk", "https://64.media.tumblr.com/479654e0c4c6e949447ae279676a18b6/840cfc28d8fee5f7-80/s250x400/8bfd5983d6dbb69fdfff4b8232f25701be93f286.jpg", 0, 56, 5, 263642, "cute psd", "<3"],
|
||||
[107, 1634682399, "mEKddjfJ", "https://i.imgur.com/ApbU9HN.jpg", 0, 73, 17, 46905, "choco psd", "<3"],
|
||||
[107, 1634692695, "CTMdA_7c", "https://i.imgur.com/p98BBCO.jpg", 0, 24, 3, 78268, "angel psd", "<3"],
|
||||
[108, 1634974864, "NJQBnd4x", "https://i.imgur.com/XDdYo0f.jpeg", 0, 89, 19, 2163814, "3d glass window logo mockup", "3D glass window logo mockup for your logos, simple and easy to use. I've used it on a couple of my videos on YouTube channel - Learn with Zar.\n\nAttribute to designer: \n3D Mockup - psfiles.com\/"],
|
||||
[109, 1634704489, "rUQwmhG3", "https://i.imgur.com/I8bbFpS.jpg", 0, 20, 0, 142187, "hug_me_tight_by_abelindak_degycqs-pre", "psd"],
|
||||
[110, 1634778888, "bqzQw4x9", "https://i.imgur.com/9YUAPAB.png", 0, 13, 1, 9214, "balls", "balls"],
|
||||
[112, 1634858494, "QGIsTsp7", "https://i.imgur.com/1Ut3U99.jpeg", 0, 13, 3, 243382, "Email Hero Image", "Email Hero Image with CTA Button"]
|
||||
]
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -43,7 +43,7 @@
|
||||
margin-left:15px;
|
||||
}
|
||||
|
||||
body {overscroll-behavior-x: contain;}
|
||||
body {overscroll-behavior-x: contain; /* two-finger swipe left can navigate to a previous website */}
|
||||
body, input, select, button {
|
||||
font-size: 13px;
|
||||
}
|
||||
@ -686,8 +686,10 @@
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
label { margin-right:2px; }
|
||||
|
||||
input, textarea, .labelitem {
|
||||
margin: 2px;
|
||||
margin: 2px 0;
|
||||
padding: 3px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@ -794,7 +796,6 @@
|
||||
}
|
||||
|
||||
select {
|
||||
margin-left:2px;
|
||||
padding-right: 17px;
|
||||
|
||||
background-image:
|
||||
|
Loading…
x
Reference in New Issue
Block a user