가난한 사람의 바이오닉 판독
그래서 빠른 확장 프로그램을 만듭니다. 그러나 알고리즘은 원래 알고리즘만큼 복잡하지 않습니다. 이 확장은 단순히 단어 길이의 60%를 "비온화"합니다.
function bionifyText(text) {
const words = text.split(/\s+/);
return words.map(bionifyWord).join(" ");
}
function bionifyWord(word) {
const wordLength = word.length;
const numBionifiedCharacters = Math.floor((wordLength * 60) / 100);
const bionifiedToken = word.slice(0, numBionifiedCharacters);
const theRest = word.slice(numBionifiedCharacters);
return `<b>${bionifiedToken}</b>${theRest}`;
}
사용하는 방법
chrome://extensions/
로 이동합니다.커스터마이징 방법
원하는 대로
bionifyWord
에서 함수bionify.js
의 구현을 변경하고 chrome://extensions/
로 돌아가 다시 로드 아이콘을 클릭합니다.사용 예
Reference
이 문제에 관하여(가난한 사람의 바이오닉 판독), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/asinkxcoswt/poorman-bionic-reading-bpi텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)