This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type HistoryItem = chrome.history.HistoryItem; | |
export const useChromeHistorySearch = ( | |
query: chrome.history.HistoryQuery | |
): HistoryItem[] => { | |
const [historyItems, setHistoryItems] = useState<HistoryItem[]>([]); | |
useEffect(() => { | |
chrome.history | |
.search(query) | |
.then((historyItems) => setHistoryItems(historyItems)) | |
.catch(() => setHistoryItems([])); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { truncateString, urlWithoutSchema } from "../services/helper"; | |
import { | |
StyledInfo, | |
StyledHistoryItem, | |
StyledItemLink, | |
StyledTitle, | |
StyledTime, | |
} from "./HistoryItem.styled"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const StyledInfo = styled.div` | |
flex: 1; | |
display: flex; | |
flex-wrap: wrap; | |
row-gap: 2px; | |
padding: 4px; | |
`; | |
export const StyledItemLink = styled.a` | |
color: var(--light-grey); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { truncateString, urlWithoutSchema } from "../services/helper"; | |
import { | |
StyledInfo, | |
StyledHistoryItem, | |
StyledItemLink, | |
StyledTitle, | |
StyledTime, | |
} from "./HistoryItem.styled"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
useEffect(() => { | |
chrome.history.search({ text: "", maxResults: 10 }, (data) => { | |
console.log(data); | |
}); | |
}, []); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
... | |
"types": ["chrome", "@types/chrome"] | |
}, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require("path"); | |
const config = require("./webpack.config"); | |
module.exports = { | |
...config, | |
mode: "development", | |
devServer: { | |
static: { | |
directory: path.join(__dirname, "extension"), | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "chrome-history-extension", | |
... | |
"permissions": ["history"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "chrome-history-extension", | |
... | |
"scripts": { | |
"start": "webpack serve --config webpack.dev.js", | |
"build": "webpack", | |
}, | |
... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "chrome-history-extension", | |
... | |
"scripts": { | |
"start": "react-scripts start", | |
"build": "react-scripts build", | |
}, | |
... | |
} |