Skip to content Skip to sidebar Skip to footer
Showing posts with the label Google Chrome Extension

Capture Http Status 300 For Redirect Download Links

I'm developing a Chrome Extension to download links on a webpage. I came across some links ther… Read more Capture Http Status 300 For Redirect Download Links

Ajax Call Not Working Chrome Extension With Manifest V2

I'm trying to play around with a basic chrome extension which goes something like this chrome.o… Read more Ajax Call Not Working Chrome Extension With Manifest V2

Accessing A Pages Object Using A Chrome Extension

I simply have to access an object that is a variable on the page that I am running my content scrip… Read more Accessing A Pages Object Using A Chrome Extension

How To Get A Paragraph From The Active Tab With Chrome Extension?

In my background.html I am getting the id, url, and title of the current tab like this: chrome.tabs… Read more How To Get A Paragraph From The Active Tab With Chrome Extension?

Javascript, Chrome Extension: Overriding Cookie Getter And Setter

EDIT: After being recommended to work with headers, I asked a similar question here. I'm trying… Read more Javascript, Chrome Extension: Overriding Cookie Getter And Setter

Overriding Canvasrenderingcontext2d.getimagedata()

I am trying to override the built in method CanvasRenderingContext2D.getImageData(). I would like t… Read more Overriding Canvasrenderingcontext2d.getimagedata()

Chrome Extension: Insert Fixed Div As Ui

I want to insert a div into a fixed position using a chrome extension. It will overlay the page tha… Read more Chrome Extension: Insert Fixed Div As Ui

Chrome Extension: How To Detect That Content Script Is Already Loaded Into A Tab?

I have the following code in my background script: chrome.tabs.onUpdated.addListener(function(tabId… Read more Chrome Extension: How To Detect That Content Script Is Already Loaded Into A Tab?

Why Am I Getting "failed To Load Extension. Invalid Value For 'content_security_policy'"?

I am trying to create a chrome extension. My manifest file is { 'name': 'Alert-Beep… Read more Why Am I Getting "failed To Load Extension. Invalid Value For 'content_security_policy'"?

Chrome Extension Append Input To Url.

I'm currently creating a Chrome Extension that has a popup.html and in that pop up is 2 things.… Read more Chrome Extension Append Input To Url.

How To Use An Input Field As Query Parameter To A Destination?

For my sample Google Chrome extension, I have a textbox and a link: Solution 1: I strongly advice … Read more How To Use An Input Field As Query Parameter To A Destination?

How Can A Chrome Extension Add A Floating Bar At The Bottom Of Pages?

I am creating a chrome extension that needs to inject a floating element (i.e position:fixed) at th… Read more How Can A Chrome Extension Add A Floating Bar At The Bottom Of Pages?

Chrome Extension: Prevent Chrome.tabcapture.capture Choppy Sound By Increasing Buffer Size?

It's seems like audio capturing using chrome.tabCapture.capture can produce some choppy sounds.… Read more Chrome Extension: Prevent Chrome.tabcapture.capture Choppy Sound By Increasing Buffer Size?

How To Prevent/detect Race Condition Between Processing And Restoring Store Data When Waking Up An Event Page

I am using sendMessage and onMessage listener (both in background and content pages), and I am seei… Read more How To Prevent/detect Race Condition Between Processing And Restoring Store Data When Waking Up An Event Page

File Input In Chrome Extension Popup

I want the user to be able to upload text files as input through the browserAction popup for my ext… Read more File Input In Chrome Extension Popup

Injecting Javascript Into Newly Created Tab In Chrome Extension

I am attempting to make a chrome extension that creates a new tab with a local 'blanksite.html&… Read more Injecting Javascript Into Newly Created Tab In Chrome Extension

Domnodeinserted Event Loop

I am developing a chrome extension (my fourth question or so...) for facebook, which adds a custom … Read more Domnodeinserted Event Loop

Run My Javascript Code On Every Page On My Browser, Similar To How A Chrome Extension Would

I know with Chrome I can use snippets to manually run some js code on a webpage. But This required … Read more Run My Javascript Code On Every Page On My Browser, Similar To How A Chrome Extension Would

Why Is Chrome.runtime Undefined In The Content Script?

I have a very simple chrome extension, where I'm trying to pass a message from the background s… Read more Why Is Chrome.runtime Undefined In The Content Script?

Use Existing Jquery In Chrome Extension Content Script?

Everything I find seems to involve injecting jQuery, but I know jQuery already exists on the page (… Read more Use Existing Jquery In Chrome Extension Content Script?