前提・実現したいこと
拡張機能から新規のブックマークを登録する
テストコードでは、Qiitaの記事にアクセスした際に自動的にブックマークする挙動を取ることが期待されるが、動作しない
発生している問題・エラーメッセージ
Error handling response: TypeError: Cannot read properties of undefined (reading 'create') at bookmark (chrome-extension://cnlfloncdpmlhkdlhnbmpgmfmpjdnkpm/script.js:5:22) at chrome-extension://cnlfloncdpmlhkdlhnbmpgmfmpjdnkpm/script.js:22:44
該当のソースコード
json
1{ 2 "manifest_version": 2, 3 "permissions": [ 4 "bookmarks", 5 "storage" 6 ], 7 "name": "test", 8 "short_name": "test", 9 "version": "0.1", 10 "description": "a extention for Google Chrome", 11 "icons": { 12 }, 13 "browser_action": { 14 "default_icon": { 15 }, 16 "default_title": "Ext title" 17 }, 18 "content_scripts": [ 19 { 20 "matches": [ "http://qiita.com/*/items/*", "https://qiita.com/*/items/*" ], 21 "js": [ "script.js" ] 22 } 23 ] 24}
function bookmark(link,title){ console.log("bookmark");//出る console.log(link,title);//出る chrome.bookmarks.create({//ここでエラーを吐く 'parentId': bookmarkBar.id, 'title':title, 'url':link }); }; console.log("hoge");//出る console.log(chrome);//出る bookmark(location.pathname,document.title);
試したこと
拡張機能の再読み込み->効果なし(名前はいじったら変わったので読み込まれてはいそう)
console.log(chrome.bookmarks)
->undefined
他のchrome.* APIの利用 -> chrome.storageは動作
補足情報(FW/ツールのバージョンなど)
ChromeOS 93.0.4577.107
(win10環境でも同様だったのであんまり関係ないと思います)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。