Skip to content Skip to sidebar Skip to footer

I Want To Make A Chrome Extension That Will Take Url From Browser And Pass It To Python Script That In Present In Same Folder

I want to make a chrome extension that will take url from browser and pass it to python script that in present in same folder, which will scrape the web page and output a JSON file

Solution 1:

Double check that you have added the googleapis domain to your mainfest content_security_policy

"content_security_policy": "script-src 'self'
https://ajax.googleapis.com; object-src 'self'",

More discussed here How to use jQuery in chrome extension?


Post a Comment for "I Want To Make A Chrome Extension That Will Take Url From Browser And Pass It To Python Script That In Present In Same Folder"