Skip to content

Instantly share code, notes, and snippets.

View MariusBongarts's full-sized avatar

Marius Bongarts MariusBongarts

View GitHub Profile
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([]));
import React from "react";
import { truncateString, urlWithoutSchema } from "../services/helper";
import {
StyledInfo,
StyledHistoryItem,
StyledItemLink,
StyledTitle,
StyledTime,
} from "./HistoryItem.styled";
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);
import React from "react";
import { truncateString, urlWithoutSchema } from "../services/helper";
import {
StyledInfo,
StyledHistoryItem,
StyledItemLink,
StyledTitle,
StyledTime,
} from "./HistoryItem.styled";
useEffect(() => {
chrome.history.search({ text: "", maxResults: 10 }, (data) => {
console.log(data);
});
}, []);
{
"compilerOptions": {
...
"types": ["chrome", "@types/chrome"]
},
}
const path = require("path");
const config = require("./webpack.config");
module.exports = {
...config,
mode: "development",
devServer: {
static: {
directory: path.join(__dirname, "extension"),
},
{
"name": "chrome-history-extension",
...
"permissions": ["history"]
}
{
"name": "chrome-history-extension",
...
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack",
},
...
}
{
"name": "chrome-history-extension",
...
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
},
...
}