Search
Chrome bude výrazně bezpečnější a chystá nový domov pro doplňky
20.5.2020
Google se netradičně pochlubil hromadou novinek, které se postupně promítnou do jeho prohlížeče Chrome.
Designéři přeskupí položky v nastavení prohlížeče takovým způsobem, aby se uživatelé rychleji dostali třeba k výmazu historie. Podle Googlu to dělají často a tento balík novinek se má týkat
[aktualita] Prohlížeč Chrome přidává zabezpečené prohlížení webů a podporu DNS over HTTPS
19.5.2020
Google zveřejnil několik bezpečnostních novinek, které začal implementovat do svého prohlížeče Chrome. Kromě redesignu nastavení bezpečnosti přidává ve verzi 83 také několik funkcí. Jednou z nich je Bezpečnostní kontrola (Safety check). Nová položka v nastavení zkontroluje, zda nebyla některá...
How to Build a Chrome Extension
19.5.2020
I made a Chrome extension this weekend because I found I was doing the same task over and over and wanted to automate it. Plus, I’m a nerd during a pandemic, so I spend my weird pent-up energy building things. I’ve made five Chrome extensions with that energy, yet I still find it hard...
Chrome bude blokovat ty nejnáročnější a pochybné reklamy, které nemají na webu co pohledávat
15.5.2020
Autoři Chromia, svobodného základu prohlížeče Chrome, se na blogu pochlubili, jak zatočí s těmi nejnáročnějšími webovými reklamami. Nejrůznější skripty a skryté rámce, které mohu tajně těžit kryptoměny, anebo jiným způsobem výrazně snižovat uživatelský zážitek, prohlížeč brzy jednoduše
22 More Crypto-Stealing Google Chrome Extensions Discovered
8.5.2020
A security researcher discovered another 22 Google Chrome web browser extensions that tried to steal users’ cryptocurrencies
Exciting Things on the Horizon For CSS Layout
8.5.2020
Michelle Barker notes that it’s been a heck of a week for us CSS layout nerds.
Firefox has long had the best DevTools for CSS Grid, but Chrome is about to catch up and go one bit better by visualizing grid line numbers and names.
Firefox supports gap for display: flex, which is great,...
@property
25.4.2020
The @property is totally new to me, but I see it’s headed to Chrome, so I suppose it’s good to know about!
There is a draft spec and an “intent to ship” document. The code from that document shows:
@property --my-property {
syntax: "<color";
initial-value: green;
...
Chrome + System Fonts Snafu
24.4.2020
There was just a bug late last year where system fonts (at least on Mac, I don’t know what the story was on other platforms) in Chrome appeared too thin and tracked-in at small sizes and too thick and tracked-out at larger sizes. That one was fixed, thankfully. But while it was a problem,...
Can JavaScript Detect the Browser’s Zoom Level?
21.4.2020
No, not really.
My first guess was that this was intentionally not exposed in browsers because browsers intentionally don’t want us fighting it — or making well-intentioned but bad-outcome decisions based on that info. But I don’t see any evidence of that.
StackOverflow answers paint...
Stovky doplňků pro Chrome kradly kryptoměny a vedly na phishingové stránky. Google je smazal
16.4.2020
V rámci internetového obchodu s doplňky pro prohlížeč Chrome se nacházelo více než 500 rozšíření, které zobrazovaly škodlivou reklamu, přesměrovávaly uživatele na falešné weby či kradly kryptoměny. Google je aktuálně smazal.
Všechna dotčená rozšíření, které odhalil tým Duo Security od Cisca a
Mystery Hacker Tries to Steal Crypto Through Fake Google Chrome Wallet Extensions
16.4.2020
Google has removed 49 Chrome extensions masquerading as legitimate crypto wallets, including Ledger, MyEtherWallet, MetaMask and Jaxx, according to MyCrypto's Harry Denley
Google Pulls 49 Cryptocurrency Wallet Browser Extensions Found Stealing Private Keys
15.4.2020
Google has removed 49 cryptocurrency wallet browser extensions after a security researcher discovered they were stealing private keys. These Chrome extensions targeted users of crypto wallets, such as Ledger, Trezor, Jaxx, Electrum, Myetherwallet, Metamask, Exodus, and Keepkey. Also read: Bitcoin...
49 Crypto-Stealing Chrome Extensions Removed from Google's Store
15.4.2020
Google has removed a number of Chrome extensions that were pretending to be crypto wallet apps in order to steal users' cryptoassets.
A total of 49 extensions of Google's popular web browser, Chrome, which is the most popular in the world, have been removed by the tech giant from the Web Store...
Styling in the Shadow DOM With CSS Shadow Parts
13.4.2020
Safari 13.1 just shipped support for CSS Shadow Parts. That means the ::part() selector is now supported in Chrome, Edge, Opera, Safari, and Firefox. We’ll see why it’s useful, but first a recap on shadow DOM encapsulation…
The benefits of shadow DOM encapsulation
I work at giffgaff where we have...
CSS Findings From The New Facebook Design
7.4.2020
Ahmad Shadeed digs around the new Facebook’s front-end code.
One that stood out to me:
.element {
inset: 4px 0;
/* Which is equivalent to: top: 4px, bottom: 4px, left: 0, right: 0 */
}
Whaaat? This is the first I’ve heard of the inset property. Ahmad said he saw it working...
Google Chrome Leads the Pack, but Privacy-Oriented Browsers Gain Traction
3.4.2020
Web browsers like Tor, Brave and Status are trying to usher in a new era of individual privacy and security
Fake Ledger Chrome Extensions Continue to Steal Crypto From Victims
29.3.2020
The Ripple wallet associated with a malicious Chrome extension impersonating Ledger has absorbed more than 2.5 million XRP
Aktualizace Chrome budou pokračovat. Google je začne vydávat od dubna
29.3.2020
Před týdnem oznámil Google, že pozastaví aktualizace svého prohlížeče Chrome. Nyní na blogu zveřejnil, kdy vyjdou další verze.Překvapivě se tak stane už v začátkem dubna.
Google záměr pokračovat ve vydávání aktualizací pro Chrome potvrdil na svém blogu, kde se i rozepsal, kdy můžeme očekávat
Fake Ledger Live Chrome Extension Stole 1.4M XRP, Researchers Claim
25.3.2020
Fake Ledger Live extensions for Google Chrome are being used to collect user backup passphrases, a forensics team claims
CSS :nth-of-class selector
23.3.2020
That's not a thing.
But it kinda is!
Bram covers how frustrating .bar:nth-child(2) is. It's not "select the second element of class .bar." It's "select the second element if it also has the class .bar." The good news? There is a real selector that does the former:
:nth-child(2 of .bar) { }
Safari...