リスト全体を知りたい場合は、低レベルの答え:
これは、Google Chromeのuserprofileフォルダーのsqlite3データベースに保存されます。Linuxでは、
〜/ .config / google-chrome / Default / Top Sites
SQLite3を使用してそれを見ることができます:
me@local~/.config/google-chrome/Default$ cp Top \ Sites ts.sqlite
me@local~/.config/google-chrome/Default$ sqlite3 ts.sqlite ...
sqlite> .schema
...
CREATE TABLE thumbnails(url LONGVARCHAR PRIMARY KEY、url_rank INTEGER、...
sqlite> select url_rank、url from thumbnails order by url_rank;
0 | https://android.stackexchange.com/
...
21 | http://archive.org /
23 | https://android.googlesource.com/
24 | https://android.meta.stackexchange.com/
質問に答えるには、
通常のSQLコマンドを使用してエントリを削除または編集できますが、Chromeが実行されていないこと、つまりファイルが(Chromeによって)開かれていないことを確認してください。また、そのためにコピーに対してすべてのアクションを実行したことにも注意してください(見ているだけでした)。