Blisk

最新版本 Blisk 18.0.193.167

Blisk 18.0.193.167

Blisk 18.0.193.167
Blisk 是一個基於鉻的瀏覽器,用於 web 開發的基本工具。將其用於同時構建和測試您的網站的桌面和移動版本。 Blisk 使開發人員能夠同時在多個設備上編碼,預覽其更改!

4 使用原因 Blisk:

TIME SAVING
以光速發展!現在您不需要一直刷新頁面,搜索並滾動到所需的元素。 Blisk 從根本上節省了開發和測試的時間。瀏覽器將使你的生產力達到 200%。所以你可以把你的工作快兩倍,把時間花在那些對你真正重要的事情上。或者有一杯咖啡,放鬆.

CODE GURU
Code 像一個超級開發商。 Blisk 瀏覽器使編寫跨設備兼容代碼和監視代碼中的錯誤。因此,您的代碼將適用於任何設備,並且無處不在.

BEST 實踐
使用測試驅動開發等最佳實踐。隨著 Blisk 您的工作流程可以專注於編寫高品質的代碼沒有隱藏的錯誤。您可以同時開發和測試.

ScreenShot

軟體資訊
檔案版本 Blisk 18.0.193.167

檔案名稱 BliskInstaller_18.0.193.167.exe
檔案大小
系統 Windows 7 64 / Windows 8 64 / Windows 10 64
軟體類型 免費軟體
作者 Blisk Team
官網 https://blisk.io/
更新日期 2022-05-19
更新日誌

What's new in this version:

New device: iPhone SE 2022:
- The latest iPhone SE 2022 released by Apple recently is now available in Blisk. The device specification with viewport, screen size, device pixel ratio, CSS media query is available in iPhone SE 2022 overview. The specs of other devices are located in our Device center.

Improvements for CPU and Memory usage:
- Blisk v.18 features improvements for CPU and Memory usage. The reworked Developer mode was optimized to reduce the calls for the application resources and save CPU and RAM. As a result, each tab uses less resources and has improved user experience - we managed to prevent flashing of tab contents for the device sets with up to 6-8 devices (the number depends on your device OS and CPU).

Settings: max number of devices:
- One of the features that are often requested by users is increasing the number of devices in a device set. This feature has a high demand for the users that are performing device tests on multi-monitor systems or large TVs. By default, Blisk limits device set to have 8 devices to prevent high load on the CPU. Since version 18, you can change the limit of devices in Developer Mode Settings.

New technologies support in Blisk:
DevTools: CSS Grid editor:
- When an HTML element on your page has display: grid or display: inline-grid applied to it, you can see an icon appear next to it in the Styles pane. Click the icon to toggle the CSS grid editor. Here you can preview the potential changes with the on-screen icons (e.g. justify-content: space-around) and author the grid appearance with just one click.
- DevTools: Support for const redeclarations in the Console:
- The Console now supports redeclaration of const statement, in addition to the existing let and class redeclarations. The inability to redeclare was a common annoyance for web developers who use the Console to experiment with new JavaScript code.
- This allows developers to copy-paste code into the DevTools console to see how it works or experiment, make small changes to the code and repeat the process without refreshing the page. Previously, DevTools threw a syntax error if the code redeclared a const binding.

DevTools: Improved CORS debugging:
- CORS-related TypeErrors in the Console are now linked to the Network panel and Issues tab. Click on the two new icons next to the CORS-related error message to view the network request, or understand the error message further and get potential solutions in the Issues tab.

DevTools: Change color format in the Computed pane:
- You can now change the color format of any element in the Computed pane by Shift + click on the color preview

DevTools Preview feature: New CSS Overview panel:
- Use the new CSS Overview panel to identify potential CSS improvements on your page. Open the CSS Overview panel, then click on Capture overview to generate a report of your page’s CSS.
- You can further drill down on the information. For example, click on a color in the Colors section to view the list of elements that apply the same color. Click on an element to open the element in the Elements panel.

DevTools: New CSS length authoring tools:
- DevTools added an easier yet flexible way to update lengths in CSS! In the Styles pane, look for any CSS property with length (e.g. height, padding). Hover over the unit type, and notice the unit type is underlined. Click on it to select a unit type from the dropdown.

Relative indexing method for Array, String, and TypedArrays:
- Relative indexing via negative indices is a feature that enjoys popularity in other languages (e.g. Python) as well as having been requested by JS programmers
- As a result, the new method was implemented, named at(), to Array.prototype, String.prototype, and the TypedArray prototypes, that permit relative indexing with negative indices.

crypto.randomUUID():
- Generating random UUIDs is a common need for web applications (the uuid module on npm is installed > 200,000,000 times a month). Developers who have not been exposed to RFC 4122 might naturally opt to invent their own approaches to UUID generation, potentially using insufficient PRNG implementations. Standardizing a UUID method, which dictates that a CSPRNG must be used, helps protect developers from security pitfalls.
- Details: The method crypto.randomUUID() is used for generating RFC 4122 version 4 identifiers. The method returns the namespace specific string representation (for example, "6e4decd0-6066-4a25-98e3-0227317cda52").

AbortSignal.abort() static method:
- AbortSignal.abort() is a static method that allows creating a new AbortSignal object that is already aborted. It is similar in spirit to Promise.reject(), and provides improved developer ergonomics.
- Web developers have found aborted AbortSignal objects to be useful for a variety of purposes. It signifies to JavaScript APIs that no work should be done.

ALPACA attack protection:
- Connections to HTTP, HTTPS or FTP servers of ports 989 and 990 will fail
- These ports are used by the FTPS protocol, which has never been implemented in Chrome. However, FTPS servers can be attacked in a cross-protocol attack by malicious web pages using carefully-crafted HTTPS requests.
- This is a mitigation for the ALPACA attack. See https://alpaca-attack.com/.
- CSS Flexbox: support alignment keywords start, end, self-start, self-end, left, right:
- Flexbox previously only obeyed center, flex-start, and flex-end. The additional alignment keywords (start, end, self-start, self-end, left, right) allow authors to more easily align the flex items in the face of varying writing modes and flex flows.
- Without these additional keywords, developers need to change the keyword values whenever they change the writing mode, text direction, or flex reversal properties (flex-direction: row/column-reverse or align-content: wrap-reverse). The keywords implemented here let them set alignment once.

CSS module scripts:
Solutions for including CSS in component definitions are lacking. Current practices all have one or more of the following rough edges:
- Side effects like appending <style&rt; elements to the document. If this is done in the top-level scope of the document then it breaks shadow root style scoping. If it is done inside a shadow root then each individual instance of the component must include its own <style&rt; element in its shadow root instance.
- Inlined CSS text as a string in JavaScript. This is not optimally performant (it's processed by both the JS and CSS parsers) and is a poor developer experience.
- Dynamically fetch()ing CSS is generally not statically analyzable and requires careful dependency management by the developer for complex applications.
- Details: CSS module scripts solve these issues by extending the ES modules infrastructure to allow importing a CSS StyleSheet object from a CSS file, which can then be added to the document or a shadowRoot via the adoptedStyleSheets array.

CSS Overflow: scrollbar-gutter:
- The "scrollbar-gutter" property provides control over the presence of scrollbar gutters (the space which may be reserved to display a scrollbar), allowing authors to prevent layout changes as content expands while avoiding unwanted visuals when scrolling isn't needed.
- Note that the presence of the scrollbars themselves is determined by the "overflow" property and the decision of whether to use classical or overlay scrollbars is up to the User Agent
- This property provides authors with more control over how their layouts interact with the scrollbars provided by the browser. For example, authors will be able to prevent excessive layout changes as the content expands while avoiding unwanted visuals when scrolling isn't needed. Note that the presence of the scrollbars themselves is determined by the overflow property and the decision of whether to use classical or overlay scrollbars is up to the browser/OS.

Blisk 18.0.193.167 相關參考資料
Blisk

Version: 18.0.193.167. NOT Free. $9.99/mo to unlock all features. Otherwise ... How would you rate Blisk? Similar apps. Vivaldi. An advanced browser ...

https://www.macupdate.com

Blisk 18.0.193.167 Download

2022年5月19日 — Download Blisk 18.0.193.167 for Windows PC from FileHorse. 100% Safe and Secure ✓ Free Download (32-bit/64-bit) Software Version.

https://www.filehorse.com

Blisk 18.0.193.167.exe - PROGRAMY 2022 - gerchart45

Norton Utilities to zaawansowane narzędzie do oczyszczania i optymalizacji systemu operacyjnego. Aplikacja umożliwia szybki sposób uzyskania wyższej ...

https://chomikuj.pl

Blisk 18.0.193.167: iOS 15 and iPadOS 15, New devices ...

2022年5月13日 — We are excited to release the new features: iOS 15 and iPadOS 15, New devices, Improvements for CPU and Memory usage, Settings: max number ...

https://blisk.io

Blisk 22.0.217.104 Download for Windows Old Versions ...

Blisk. November, 29th 2023 - 91.3 MB - Freeware. Free Download. Security Status ... Blisk 18.0.193.167. Date released: 19 May 2022 (one year ago).

https://www.filehorse.com

blisk packaging history

194.12 by Scoop. 2022-05-18 18:30, Newest version updated to 18.0.193.167 by Scoop. 2021-12-27 00:59, Homebrew Casks has caught up with the newest version. 2021 ...

https://repology.org

Mac App Updates 2022-05-20

Blisk, 18.0.193.167. Tutanota Desktop, 3.96.6.72. NordPass, 4.23.12. MacGDBp, 2.1.2. Huawei QuickApp IDE, 1.67.2. stack, 2.10.1.20220504. Solitaire, 2.2.1.

https://macupdater.net

Mac軟體下載 Blisk 18.0.193.167 &lt;br &gt; &lt;br &gt; BliskInstaller_18.0.193 ...

Mac Blisk 18.0.193.167 軟體下載Download 檔案 BliskInstaller_18.0.193.167.dmg ,OnyX 是用於維護,個性化和優化Mac OS X 的最好的免費工具之一。

https://filesmac.com

Mac軟體下載 Blisk 18.0.194.12 &lt;br &gt; &lt;br &gt; BliskInstaller_18.0.194 ...

Mac Blisk 18.0.194.12 軟體下載Download 檔案 BliskInstaller_18.0.194.12.dmg ,OnyX 是用於維護,個性化和優化Mac OS X 的最好的免費工具之一。

https://filesmac.com