- Sep 2024
-
www.reddit.com www.reddit.comRust?1
-
Aluminum Foil Method: Tear off a small piece of aluminum foil and dip it in water or vinegar. Rub the rust spots gently with the foil. Aluminum is softer than chrome and will not scratch the surface while effectively removing rust. As you rub, the foil reacts with the rust, helping to dissolve it. Steel Wool Method (Use with Caution): If the rust is more severe, use fine steel wool (#0000 grade) to gently scrub the rusty areas. Be careful not to press too hard, as steel wool can scratch chrome if applied too aggressively.
Suggestions for removing rust from chrome on typewriters and typewriter cases.
-
- Jun 2024
-
cheapsslweb.com cheapsslweb.com
-
How to Disable HSTS in Chrome & Firefox?
Understanding the Risks and Steps to Clear HSTS Settings in Chrome and Firefox
-
- Apr 2024
-
kbrzozova.medium.com kbrzozova.medium.com
-
Replacing the lock icon with a neutral indicator prevents the misunderstanding that the lock icon is associated with the trustworthiness of a page, and emphasizes that security should be the default state in Chrome. Our research has also shown that many users never understood that clicking the lock icon showed important information and controls. We think the new icon helps make permission controls and additional security information more accessible, while avoiding the misunderstandings that plague the lock icon.
Explanation why Chrome lock icon was replaced with tune icon
-
- Mar 2024
-
-
Update: it happens on Chrome browser, too, now... Maybe it's a Windows 11 thing?
Maybe
-
- Feb 2024
-
www.codedbrainy.com www.codedbrainy.com
-
building a robust Chrome extension that effortlessly captures full-page screenshots, providing users with a seamless and enhanced browsing experience.
-
-
www.theverge.com www.theverge.com
-
Open a new tab in your Chrome browser and type chrome://flags in the search field
Access beta or secret features of Chrome browser family i.e. inc Brave
-
- Dec 2023
-
developer.chrome.com developer.chrome.com
- Nov 2023
-
chromestory.com chromestory.com
-
The nice point of Kiwi is that it supports Chrome extensions, this is why I am trying it. Browser extensions are something which I believe should be rather more widespread in Android by now.
-
-
developer.chrome.com developer.chrome.com
-
<div itemscope itemtype="http://schema.org/Code"> ```js let db; const DBOpenRequest = window.indexedDB.open("toDoList", 4); DBOpenRequest.onsuccess = (event) => { db = DBOpenRequest.result; }; const transaction = db.transaction( ['toDoList'], 'readwrite', { durability: 'strict' }); ``` </div>
-
- Oct 2023
-
community.cloudflare.com community.cloudflare.com
-
stackoverflow.com stackoverflow.com
-
chrome.google.com chrome.google.com
-
developers.cloudflare.com developers.cloudflare.com
-
Tags
Annotators
URL
-
- Sep 2023
-
chromestatus.com chromestatus.com
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
brave.com brave.com
-
Google claims this new API addresses FLoC’s serious privacy issues. Unfortunately, it does anything but. The Topics API only touches the smallest, most minor privacy issues in FLoC, while leaving its core intact. At issue is Google’s insistence on sharing information about people’s interests and behaviors with advertisers, trackers, and others on the Web that are hostile to privacy.
-
-
arstechnica.com arstechnica.com
-
Chrome now directly tracks users, generates a "topic" list it shares with advertisers.
-
-
chrome.google.com chrome.google.com
-
Disable all settings related to Privacy Sandbox
Disables "adMeasurementEnabled", "fledgeEnabled", "topicsEnabled" and "privacySandboxEnabled" for your browser.
-
-
www.theregister.com www.theregister.com
-
If a site you visit queries the Topics API, it may learn of this interest from Chrome and decide to serve you an advert about bonds or retirement funds. It also means websites can fetch your online interests straight from your browser.
The Topics API is worst than 3rd-parties cookies, anyone can query a user ad profile:
```js // document.browsingTopics() returns an array of BrowsingTopic objects. const topics = await document.browsingTopics();
// Get data for an ad creative. const response = await fetch('https://ads.example/get-creative', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(topics) });
// Get the JSON from the response. const creative = await response.json();
// Display the ad. (or not) ```
-
- Aug 2023
-
www.sveltedevtools.com www.sveltedevtools.com
Tags
Annotators
URL
-
-
chromium.googlesource.com chromium.googlesource.com
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
-
You can mark topics provided by request headers as observed by setting an Observe-Browsing-Topics: ?1 header on the response to the request. The browser will then use those topics to calculate topics of interest for a user.
-
Call the Topics API from within that iframe:
const topics = await document.browsingTopics();
-
chrome://topics-internals
-
-
support.google.com support.google.com
-
Edit ad privacy settings
And use Chrome only in case of necessity.
Tags
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
-
On-device ad auctions to serve remarketing and custom audiences, without cross-site third-party tracking.
Naming a thing with a meaning opposite to what the named thing is...
Google is insatiable when it regards to accessing users private data. Let's block that bullshit.
-
-
developer.chrome.com developer.chrome.com
-
Due to there being no good way to solve these issues, we know that many developers download Chromium (not Chrome) binaries instead, although this approach has some flaws. First, these Chromium binaries are not reliably available across all platforms. Second, they are built and published separately from the Chrome release process, making it impossible to map their versions back to real user-facing Chrome releases. Third, Chromium is different from Chrome.
-
- Jul 2023
-
developer.chrome.com developer.chrome.com
-
stackoverflow.com stackoverflow.com
-
developer.chrome.com developer.chrome.com
-
chromestatus.com chromestatus.com
-
Adds "previousslide" and "nextslide" actions to the existing Media Session API.
This will enable developers of video conferencing websites to handle these actions from browser UI. For example, if the user puts their slides presentation into a picture-in-picture window, the browser could display buttons for navigating through slides. When the user clicks those, the website handles them through the Media Session API.
-
-
-
On any Web page run the following code
js await startLocalServer(); let abortable = new AbortController; let {signal} = abortable; (await fetch('https://localhost:8443', { method: 'post', body: 'cat local_server_export.js', // Code executed in server, piped to browser duplex: 'half', headers: { 'Access-Control-Request-Private-Network': true }, signal })).body.pipeThrough(new TextDecoderStream()).pipeTo(new WritableStream({ write(v) { console.log(v); }, close() { console.log('close'); }, abort(reason) { console.log(reason); } })).catch(console.warn); await resetLocalServer();
-
- Jun 2023
-
slack.engineering slack.engineering
-
nolanlawson.com nolanlawson.com
-
v8.dev v8.dev
- May 2023
-
itsjameswhite.medium.com itsjameswhite.medium.com
-
Add more languages to be sent in the HTTP
Accept-Language
header field:http Accept-Language: en-US,en;q=0.9,fr;q=0.8`
-
-
tomayac.github.io tomayac.github.io
Tags
Annotators
URL
-
-
chrome.google.com chrome.google.com
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
fugu-tracker.web.app fugu-tracker.web.app
-
-
chromium.googlesource.com chromium.googlesource.com
-
source.chromium.org source.chromium.org
Tags
Annotators
URL
-
-
chromestatus.com chromestatus.com
Tags
Annotators
URL
-
-
chromestatus.com chromestatus.com
Tags
Annotators
URL
-
-
-
```ts
/* * Initiates a connection to the selected port. / async function connectToServer(): Promise<void> { hostInput.disabled = true; portInput.disabled = true; connectButton.textContent = 'Connecting...'; connectButton.disabled = true;
try { socket = new TCPSocket(hostInput.value, parseInt(portInput.value)); connection = await socket.opened; term.writeln('<CONNECTED>'); connectButton.textContent = 'Disconnect'; connectButton.disabled = false; } catch (e) { console.error(e); term.writeln(
<ERROR: ${e.message}>
); markDisconnected(); return; }try { reader = connection?.readable.getReader(); for (;;) { const {value, done} = await reader.read(); if (value) { await new Promise<void>((resolve) => { term.write(value, resolve); }); } if (done) { break; } } reader.releaseLock(); reader = undefined; } catch (e) { console.error(e); term.writeln(
<ERROR: ${e.message}>
); }markDisconnected(); }
/* * Closes the currently active connection. / async function disconnectFromServer(): Promise<void> { // Canceling |reader| will close the connection and cause the read loop in // connectToServer() to exit when read() returns with done set to true. if (reader) { await reader.cancel(); } } ```
-
-
github.com github.com
Tags
Annotators
URL
-
- Apr 2023
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
www.thesslstore.com www.thesslstore.com
-
chromium.googlesource.com chromium.googlesource.com
-
www.chromium.org www.chromium.org
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
Tags
Annotators
URL
-
-
www.chromium.org www.chromium.org
Tags
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
-
medium.com medium.com
- Mar 2023
-
groups.google.com groups.google.com
- Feb 2023
-
chromestatus.com chromestatus.com
Tags
Annotators
URL
-
-
chrome.google.com chrome.google.com
-
pjenlinea3.poder-judicial.go.cr pjenlinea3.poder-judicial.go.cr
-
debían estarprotagonizados por extranjeros y tratar de cosas con las que no podía identificarme. Puesbien, la situación cambió cuando descubrí los libros africanos.No había muchos disponibles, y no eran tan fáciles de encontrar como los extranjeros.Pero gracias a escritores como Chinua Achebe y Camara Laye, mi percepción de laliteratura cambió. Comprendí que en la literatura también podía existir gente como yo,chicas con la piel de color chocolate cuyo pelo rizado no caía en colas de caballo.Empecé a escribir sobre asuntos que reconocía.5
texto pdf
Tags
Annotators
URL
-
- Jan 2023
-
www.zhihu.com www.zhihu.com
-
chrome://extensions/shortcuts
给插件添加快捷键
-
- Dec 2022
-
www.zhihu.com www.zhihu.com
-
编写浏览器插件如何入门?
-
-
developer.chrome.com developer.chrome.com
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
- Nov 2022
-
webmonetization.org webmonetization.org
-
Web Monetization
Web Monetization official site with motivation, wallets, providers, browsers, search engines, tools, documentation link, explainer link, specifications link, awesome list link, github link
Tags
- gatehub
- web monetization
- hugo
- uphold
- documentation
- ilp
- coil
- motivation
- github
- puma
- vuepress
- infinity search
- donations
- w3c
- standard
- plugin
- list
- mojeek
- monetization
- gridsome
- chrome
- micro-payment
- mozilla
- edge
- currency
- ngx
- jekyll
- svelte
- protocol
- interledger
- 11ty
- wallet
- awesome
- specification
- money
- tessy
- moodle
- ledger
- gatsby
- pipe web
- javasript
- explainer
- revenue
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
-
github.com github.com
-
The thing is Chrome doesn't provide details about such resources.
-
-
chrome.google.com chrome.google.com
-
y330.github.io y330.github.io
Tags
Annotators
URL
-
-
chromestatus.com chromestatus.com
Tags
Annotators
URL
-
-
www.autohotkey.com www.autohotkey.com
-
Testing if Google Chrome can make annotations on this Auto Hotkey documentation page.
It (and Brave) can't make highlights or annotations for some reason. The prompt doesn't appear when text is highlighted, why is this? Is there a way to force the prompt to appear?
-
- Oct 2022
-
superuser.com superuser.com
- Aug 2022
-
-
```css .body, .wrapper { / Break the flow / position: absolute; top: 0px;
/ Give them all the available space / width: 100%; height: 100%;
/ Remove the margins if any / margin: 0;
/ Allow them to scroll down the document / overflow-y: hidden; } ```
Tags
Annotators
URL
-
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
blog.flycode.com blog.flycode.com
-
web.dev web.dev
-
PWAs as URL Handlers was part of the capabilities project and support for the experimental url_handlers manifest member, documented below, is being phased out. The url_handlers manifest member is being replaced by the new handle_links manifest member, which is currently being standardized and implemented.
Tags
Annotators
URL
-
-
chromestatus.com chromestatus.com
-
Implementation status: No longer pursuing
Tags
Annotators
URL
-
-
chromestatus.com chromestatus.com
-
developer.chrome.com developer.chrome.com
-
For creating SXGs for testing purposes, you can create a self-signed certificate and enable chrome://flags/#allow-sxg-certs-without-extension to have your Chrome process the SXGs created with the certificate without the special extension.
Tags
Annotators
URL
-
- Jul 2022
-
crxextractor.com crxextractor.com
-
- dangerous???
-
-
www.crx4chrome.com www.crx4chrome.com
-
Stylish 2.1.4
- version 3.0.0 is different and dangerous!!!
- search 2.1.4 in https://www.crx4chrome.com/crx/284180/
-
-
stackoverflow.com stackoverflow.com
-
Rename the downloaded file to .zip and unpack it to a directory (you might get a warning about a corrupt zip header, but most unpacker will continue anyway) Go to Settings -> Tools -> Extensions Enable developer mode Click "Load unpacked extention" Browse to the unpacked folder and install your extention
- 1-download .crx from https://www.crx4chrome.com/crx/284180/
- 2-fjnbnpbmkenffdnngjfgmeleoegfcffe-2.1.4-Crx4Chrome.com.crx
- 3-rename .RAR, open with 7zip
-
- Jun 2022
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
- May 2022
-
wicg.github.io wicg.github.io
Tags
Annotators
URL
-
-
chromedevtools.github.io chromedevtools.github.io
Tags
Annotators
URL
-
-
javascript.info javascript.info
Tags
Annotators
URL
-
-
www.smartjava.org www.smartjava.org
- Apr 2022
-
github.com github.com
Tags
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
- Feb 2022
-
insertlearning.com insertlearning.com
-
Referred to me by Mark Grabe.
-
-
developer.chrome.com developer.chrome.com
- Jan 2022
-
levelup.gitconnected.com levelup.gitconnected.com
-
developer.chrome.com developer.chrome.com
-