var React = require('react'); class MainList extends React.Component { componentDidMount() { } _openOptionsPage() { if (chrome.runtime.openOptionsPage) { // New way to open options pages, if supported (Chrome 42+). chrome.runtime.openOptionsPage(); } else { // Reasonable fallback. window.open(chrome.runtime.getURL('options.html')); } } render() { return(
Options Custom Rules Dashboard Login Logout
); } } export default MainList;