René's URL Explorer Experiment


Title: How to install livewire-devtools under Chrome? · Issue #10 · beyondcode/livewire-devtools · GitHub

Open Graph Title: How to install livewire-devtools under Chrome? · Issue #10 · beyondcode/livewire-devtools

X Title: How to install livewire-devtools under Chrome? · Issue #10 · beyondcode/livewire-devtools

Description: Hello, In the console of my Livewire/livewire 2 / laravel 7 app I got error : login?email=admin@mail.com&password=111111:60 Uncaught TypeError: window.livewire.devTools is not a function at login?email=admin@mail.com&password=111111:...

Open Graph Description: Hello, In the console of my Livewire/livewire 2 / laravel 7 app I got error : login?email=admin@mail.com&password=111111:60 Uncaught TypeError: window.livewire.devTools is not a function at login...

X Description: Hello, In the console of my Livewire/livewire 2 / laravel 7 app I got error : login?email=admin@mail.com&password=111111:60 Uncaught TypeError: window.livewire.devTools is not a function at l...

Opengraph URL: https://github.com/beyondcode/livewire-devtools/issues/10

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"How to install livewire-devtools under Chrome?","articleBody":"Hello,\r\nIn the console of my Livewire/livewire 2 / laravel 7  app I got error :\r\n```\r\nlogin?email=admin%40mail.com\u0026password=111111:60 Uncaught TypeError: window.livewire.devTools is not a function\r\n    at login?email=admin%40mail.com\u0026password=111111:60\r\n(anonymous) @ login?email=admin%40mail.com\u0026password=111111:60\r\nlivewire-turbolinks.js:31 Uncaught TypeError: Livewire.hook is not a function\r\n\r\n```\r\nI loaded and installed package from https://github.com/beyondcode/livewire-devtools\r\nand selected it under chrome://extensions/\r\nbut I see erros buttons red: https://prnt.sc/vqgk51\r\n\r\nand clicking on it I see error:\r\n```\r\nError in event handler: ReferenceError: suffix is not defined\r\nContext\r\n_generated_background_page.html\r\nStack Trace\r\nbuild/background.js:1 (anonymous function)\r\n\r\n\r\n!function(e){var n={};function o(t){if(n[t])return n[t].exports;var s=n[t]={i:t,l:!1,exports:{}};return e[t].call(s.exports,s,s.exports,o),s.l=!0,s.exports}o.m=e,o.c=n,o.d=function(e,n,t){o.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},o.n=function(e){var n=e\u0026\u0026e.__esModule?function(){return e.default}:function(){return e};return o.d(n,\"a\",n),n},o.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},o.p=\"\",o(o.s=659)}({659:function(e,n){const o={};let t;chrome.runtime.onConnect.addListener(e=\u003e{let n,t;!function(e){return+e+\"\"===e}(e.name)?(n=e.sender.tab.id,t=\"backend\"):(n=e.name,t=\"devtools\",function(e){chrome.tabs.executeScript(e,{file:\"/build/proxy.js\"},function(n){n?console.log(\"injected proxy to tab \"+e):o[e].devtools.postMessage(\"proxy-fail\")})}(+e.name)),o[n]||(o[n]={devtools:null,backend:null}),o[n][t]=e,o[n].devtools\u0026\u0026o[n].backend\u0026\u0026function(e,n,t){function s(n){if(\"log\"===n.event)return console.log(\"tab \"+e,n.payload);console.log(\"devtools -\u003e backend\",n),t.postMessage(n)}function c(o){if(\"log\"===o.event)return console.log(\"tab \"+e,o.payload);console.log(\"backend -\u003e devtools\",o),n.postMessage(o)}function r(){console.log(\"tab \"+e+\" disconnected.\"),n.onMessage.removeListener(s),t.onMessage.removeListener(c),n.disconnect(),t.disconnect(),o[e]=null}n.onMessage.addListener(s),t.onMessage.addListener(c),n.onDisconnect.addListener(r),t.onDisconnect.addListener(r),console.log(\"tab \"+e+\" connected.\")}(n,o[n].devtools,o[n].backend)}),chrome.runtime.onMessage.addListener((e,n)=\u003e{n.tab\u0026\u0026e.livewireDetected\u0026\u0026(chrome.browserAction.setIcon({tabId:n.tab.id,path:{16:\"icons/1.png\",48:\"icons/48.png\",128:\"icons/128.png\"}}),chrome.browserAction.setPopup({tabId:n.tab.id,popup:e.devtoolsEnabled?`popups/enabled${suffix}.html`:`popups/disabled${suffix}.html`}))}),chrome.tabs.onActivated.addListener(({tabId:e})=\u003e{t=e}),chrome.contextMenus.onClicked.addListener((e,n)=\u003e{chrome.runtime.sendMessage({vueContextMenu:{id:e.menuItemId}})})}});\r\n\r\n```\r\nI reopened Chrome and reloaded Kubutu.\r\n\r\n\r\nLooking at branch https://github.com/beyondcode/livewire-devtools/issues/6\r\nI found some hints how it can be fixed:\r\n1) In file package.json I added \r\n```\r\n    \"devDependencies\": {\r\n        \"eslint\": \"^7.9.0\"\r\n    },\r\n\r\n```\r\neslint line and run \r\n```\r\nnpm install\r\nnpm run watch-poll\r\n\r\n```with success\r\n\r\n2) In my project I found 3 files : \r\n\r\n- /vendor/livewire/livewire/dist/manifest.json\r\n- /public/mix-manifest.json\r\n- /public/vendor/livewire/manifest.json\r\n- \r\n\r\nbut all these 3 files are autogenerated I do not know which file have I to edit as I read :\r\n```\r\n{\r\n  ...\r\n  \"permissions\": [\r\n    \"http://*/*\",\r\n    \"https://*/*\",\r\n+   \"contextMenus\"\r\n  ],\r\n  ...\r\n}\r\ncontextMenus is missed in manifest.json\r\n\r\n```\r\n\r\nWhat can be the issue and how to fix it ?\r\n\r\nThanks!\r\n","author":{"url":"https://github.com/sergeynilov","@type":"Person","name":"sergeynilov"},"datePublished":"2020-12-02T13:20:09.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/10/livewire-devtools/issues/10"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:328bbda9-4c26-510c-5a62-daee125e2157
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE148:1A6D77:B93C8:F11F2:698EAA30
html-safe-nonceff59ed96cc9a0061b60cb10e9d1f7d34820044250c65f369c48421afadb7f9c9
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFMTQ4OjFBNkQ3NzpCOTNDODpGMTFGMjo2OThFQUEzMCIsInZpc2l0b3JfaWQiOiI2NDc4MzY5NDYwOTE0NjYxOTM2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac97bfa1a8c2d15544e4f0710d6850fd96c8bbecb6932afce81d5c203118cda95e
hovercard-subject-tagissue:755268323
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/beyondcode/livewire-devtools/10/issue_layout
twitter:imagehttps://opengraph.githubassets.com/b595cdc490ea2b14eea39d7cedde6575184038f24381a55a420c5716a8c13ab0/beyondcode/livewire-devtools/issues/10
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/b595cdc490ea2b14eea39d7cedde6575184038f24381a55a420c5716a8c13ab0/beyondcode/livewire-devtools/issues/10
og:image:altHello, In the console of my Livewire/livewire 2 / laravel 7 app I got error : login?email=admin@mail.com&password=111111:60 Uncaught TypeError: window.livewire.devTools is not a function at login...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamesergeynilov
hostnamegithub.com
expected-hostnamegithub.com
Nonecb2828a801ee6b7be618f3ac76fbf55def35bbc30f053a9c41bf90210b8b72ba
turbo-cache-controlno-preview
go-importgithub.com/beyondcode/livewire-devtools git https://github.com/beyondcode/livewire-devtools.git
octolytics-dimension-user_id38242993
octolytics-dimension-user_loginbeyondcode
octolytics-dimension-repository_id292672982
octolytics-dimension-repository_nwobeyondcode/livewire-devtools
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id292672982
octolytics-dimension-repository_network_root_nwobeyondcode/livewire-devtools
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasee6b91a7e6e46287d26887e3fb7a4161657bab8f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/issues/10#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fbeyondcode%2Flivewire-devtools%2Fissues%2F10
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fbeyondcode%2Flivewire-devtools%2Fissues%2F10
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=beyondcode%2Flivewire-devtools
Reloadhttps://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/issues/10
Reloadhttps://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/issues/10
Reloadhttps://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/issues/10
beyondcode https://patch-diff.githubusercontent.com/beyondcode
livewire-devtoolshttps://patch-diff.githubusercontent.com/beyondcode/livewire-devtools
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fbeyondcode%2Flivewire-devtools
Fork 26 https://patch-diff.githubusercontent.com/login?return_to=%2Fbeyondcode%2Flivewire-devtools
Star 422 https://patch-diff.githubusercontent.com/login?return_to=%2Fbeyondcode%2Flivewire-devtools
Code https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools
Issues 15 https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/issues
Pull requests 0 https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/pulls
Actions https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/actions
Projects 0 https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/projects
Security 0 https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/security
Insights https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/pulse
Code https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools
Issues https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/issues
Pull requests https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/pulls
Actions https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/actions
Projects https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/projects
Security https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/security
Insights https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/beyondcode/livewire-devtools/issues/10
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/beyondcode/livewire-devtools/issues/10
How to install livewire-devtools under Chrome?https://patch-diff.githubusercontent.com/beyondcode/livewire-devtools/issues/10#top
https://github.com/sergeynilov
https://github.com/sergeynilov
sergeynilovhttps://github.com/sergeynilov
on Dec 2, 2020https://github.com/beyondcode/livewire-devtools/issues/10#issue-755268323
https://github.com/beyondcode/livewire-devtoolshttps://github.com/beyondcode/livewire-devtools
https://prnt.sc/vqgk51https://prnt.sc/vqgk51
#6https://github.com/beyondcode/livewire-devtools/issues/6
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.