1
vote
1answer
57 views

Store an array with chrome.storage.local

I'm writing a chrome extension, and I can't store an array. I read that I should use JSON stringify/parse to achieve this, but I have an error using it. chrome.storage.local.get(null, ...
0
votes
0answers
32 views

Javascript: Problems saving and retriving and displaying an image from localstorage

I am developing an extension for Chrome, and need to save and retrieve images from storage. Some of the images need to be loaded from the extension directory, while others will be send from a ...
0
votes
1answer
18 views

chrome extension storage: set/get value

Trying to set and get values in my Chrome extension using local storage. Don't know what I did, but it's no longer working.¨ In manifest I have: "permissions": [ "tabs", "http://*/*", ...
0
votes
1answer
81 views

Injected HTML accessing the Chrome API and global variables

I'm working on a Chrome Extension, and I'm new to the process. The extension I'm working on injects an HTML sidebar into the page, injects java-script functions to the header, then let's the user ...
1
vote
2answers
163 views

Chrome extension - Write to local storage of a different domain

How can I write to a local storage of a different domain. The idea is that I need my chrome extension to write something in the local storage and when the user visits the associated website, site site ...
0
votes
1answer
47 views

Background page not detecting string in URL properly

I'm trying to set up a listener in my background page that will increment a counter when a tab is updated with "nytimes.com" in its URL (eventually I want it to increment when a tab is updated with ...
2
votes
1answer
162 views

How to check if a variable is set on chrome storage

I have a little snippet working with LocalStorage but I cannot make it work on Chrome Storage scheme yet. When my application starts I check a variable in localStorage var ...
0
votes
2answers
74 views

Code seemingly not executing since chrome.storage added

My chrome.tabs.query code does not seem to execute when looking my extension in the debugger. I'm experimenting with the chrome.storage API to log the number of times articles at nytimes.com are ...
0
votes
1answer
275 views

Uncaught TypeError: Cannot read property 'local' of undefined in chrome extension

I have written a Chrome extension. I cannot use localStorage.setItem and localStorage.getItem for storing and retrieving because background and browser action runs in different environment [as seen ...
0
votes
0answers
209 views

How to save an image to html5 filesystem from local file system

Im developing (an experimentation) a simple chrome extension which acts as a new tab page. Now, I want to add the functionality for the user to "choose" an image from his/her local hard disk, and I ...
2
votes
2answers
64 views

Simultaneous asynchronous saving to chromes unlimited storage

I am trying to write a Chrome extension that involves using chrome's unlimited storage. I am currently retrieving from storage like this: chrome.storage.local.get(null, function (items) { ...
0
votes
2answers
289 views

Moving from localStorage to chrome.storage

I would like to use chrome.storage API to save the settings of my users instead of localStorage in my Chrome extension. Currently my options.js (with localStorage and JSON) file looks like this: ...
1
vote
1answer
62 views

Can two different websites interact with each others localstorage

Lets say, I have to websites with completely different domains. Domain 1 is water.com Domain 2 is fire.com If domain 1 (water.com) uses localStorage to store a username, can domain 2 (fire.com) ...
1
vote
1answer
180 views

Pass multiple variables to content script chrome

I'm writing my first chrome extension, and I just started this a few hours ago. Everything worked well when it was hard-coded. Essentially, I'm filling an 8-page form. Each page of the form ...
2
votes
1answer
420 views

Chrome Extension local storage not working

I have written a simple html page that has one input and three links. "OK" --> Stores whatever is in the filed to local storage "WhoamI" --> Alerts with the value that was saved to local storage ...
0
votes
1answer
100 views

How to get a response out of chrome tab by its extension?

Suppose I open a new chrome tab for a user to sign in. The tab is opened by createTab from the chrome extension. And once the user signs in, and server sends a response, how would I make my chrome ...
0
votes
1answer
251 views

Chrome extension: get current page cookie and same to plugin local storage

I tried the following but not sure how to manipulate it. manifest.json "permissions": [ "tabs", "http://*/*", "https://*/*" ], "content_scripts": [ { "matches": ...
-1
votes
1answer
107 views

localStorage in chrome extensions - Extension or page storage?

If I use localStorage in a Google Chrome extension, is it the storage of the current webpage, or is it the storage of the extension? Alternatively, how can I reach each localStorage independently?
0
votes
2answers
161 views

truly persistent localStorage or workaround for history clear

For my company I've created a RSS reader extension for our internal blog. The reason why I've build my own is irrelevant, I know there are many existings extensions. Suffice to say that the blog is ...
2
votes
1answer
126 views

How to send longer emails from a Chrome extension?

I would like to make a Chrome extension that lets users send emails with certain text automatically filled in. I was using a mailto: link, but it cannot handle strings longer than 1024 characters, and ...
3
votes
1answer
680 views

How to use chrome.storage in a chrome extension using a variable's value as the key name?

I'm trying to use chrome's local storage / sync storage (chrome.storage) for an extension, to store data entries, for many different entries. I can't seem to figure out the correct syntax for it. I ...
0
votes
1answer
77 views

How could i achieve to access the data which where set on options page in the content script eg. in the google chrome extension

I am setting some values at the option page. This is now working okay. But i am unable to access the data setted in the background.html or in the content script. I have read that something like this ...
0
votes
2answers
194 views

How to use localstorage in chrome extensions

I have an extension. On the options page i am setting options, that obvious. But i cant get localstorage to work. The options are binded to onclick event with jquery. Example code how i am setting ...
1
vote
2answers
177 views

How to check value of chrome.storage manually

I know how to check what localStorage values are stored in chrome by using the developer resource panel, but how do you check what is stored in chrome.storage? I know how to do it via programming but ...
0
votes
1answer
121 views

Why does chrome.storage.local.get cause an XML page to crash?

I am developing a Google chrome extension. Everything works fine except that the extension causes the page to crash when viewing an XML file (such as a Site Map). I have narrowed the issue down to ...
0
votes
1answer
102 views

Chrome Extension doesn't considers optionvalue until reloaded

I'm working on my first Chrome Extension. After learning some interesting notions about jquery i've moved to raw javascript code thanks to "Rob W". Actually the extension do an XMLHttpRequest to a ...
0
votes
0answers
207 views

get value from localStorage not working

I'm trying in my chrome extension( html file ) this js code, i can't get the value from localStorage, the url is the key. chrome.tabs.query( { currentWindow: true, active: true }, ...
2
votes
0answers
1k views

How chrome.storage.local.get sets a value?

var storage = chrome.storage.local; var css = "old"; storage.set({'css': 'new'}); storage.get('css', function(items) { if (items.css) { css = items.css; console.log(css); } }); ...
0
votes
1answer
606 views

Google Chrome Extension Variable using sendMessage from Content Script to Background Page is Undefined

I have a basic Google Chrome Extension I am working on, and having a problem getting a value from localStorage. I am using sendMessage in the content script to ask for the variable from the ...
0
votes
0answers
116 views

Can a chrome extension store an X.509 Certificate in local storage?

I want to write a chrome extension that could receive an X.509 certificate from a server and store it securely in chrome's local storage. Is this possible using chrome extensions API? Is my only way ...
0
votes
0answers
33 views

Background page not storing data in its localStorage in my chrome extension [duplicate]

Possible Duplicate: Port error while changing chrome extension from manifest v1 to v2 I am creating a chrome extension where I store data in localStorage of the background page. I am taking ...
0
votes
1answer
145 views

How do I view the localStorage of a Chrome Extension I've installed?

It seems like it should be possible to view the localStorage of Chrome Extensions installed on my browser. I've played around with the Developer Tools a bit, but haven't found a way to do this. Any ...
0
votes
0answers
101 views

Save a simple file with a own file-extension to disk

I ran in a big problem while programming my first chrome extension. In this extension, I'm able to get the ID of a Youtube video in Javascript by spliting and so on, but I have to save this string to ...
0
votes
1answer
70 views

Uninstalling chrome extension and associated localStorage

I am testing a chrome extension in dev mode. Once I finish it, I packaged it and installed on my machine! It is working. But I am not sure whether the old localStorage was removed when I uninstalled ...
1
vote
0answers
255 views

Does Google Maps Javascript API v3 Geocoding Library overwrite localStorage keys with keys starting with “geocode:”?

I have Google Maps Javascript API v3 on a page and am using the Geocoding Library: https://developers.google.com/maps/documentation/javascript/geocoding The Code In my google.maps.Geocoder.geocode ...
0
votes
1answer
531 views

chrome extension: append (push) JSON data into localStorage()

I have created my own method called pushLocalStorage() into my background.js to ease appending an object into an array of objects. It's purpose is to simply take data from the caller and if the key ...
1
vote
1answer
166 views

Do you know a Chrome / Firefox extensions using IndexeDB and Local storage?

I need to see running examples of extensions for Chrome and Firefox using : 1°) IndexeDB 2°) Local storage I d like to now if the files created by extensions in IndexeDB or "Local storage" have a ...
0
votes
1answer
563 views

Is LocalStorage synchronization for Chrome extensions already available?

I found chromium issue titled "Allow extensions/apps to sync their own settings" that has status 'Fixed'. It's from December 2011. So, does it work? If so, how does it work and where are the docs? ...
1
vote
1answer
168 views

Tutorials for local storage?

I am looking for places to learn how to use local storage in chrome extensions. More specifically: I want to use options and local storage of variables to run different css content scripts depending ...
0
votes
1answer
1k views

Chrome extension: store data on background

I want to be able to store data on background (on my extension) so I can access this data between multiple domains. Where's what I'm doing: content-script.js function setItem(name, data) { ...
0
votes
1answer
87 views

Retain data unique to page in Chrome Extension's popup?

I feel like I'm missing something incredibly obvious here. I am building a Chrome Extension, and I want to be able to retain data specific to the page being viewed that affects the popup.html. A ...
1
vote
1answer
476 views

posting data into database-web sql chrome extension

I was planning on saving posts from my servers to my extension. Does Chrome has an unlimited storage web sql example for this? Thanks.
1
vote
1answer
328 views

LocalStorage message passing issue - nearly works

I have been trying for the last two days to get this to work and as a last resort I am asking here. I have looked on all of the related posts on StackOverflow that are relating to message passing, ...
3
votes
1answer
226 views

Chrome extension store

when building my Google Chrome extension, I run into a problem with storing it's settings. I have created a settings page which is opened in a tab after the user clicks browserAction icon. This pages ...
0
votes
1answer
106 views

insert data from filestream in local storage chrome extension

I have created table in local storage and also succeeded in insert single row in local storage but when i use the streamed text file to insert it in local storage line by line then the data is not ...
0
votes
1answer
112 views

passing local storage to contenscript

I m developing a chrome extension and i want to know that , is there any way to pass whole local storage to contentscript from background page using message passing between content script and ...
0
votes
1answer
255 views

Is there any way we can initialize some just once in chrome extension?

I am trying to write a simple chrome extension using html5 local storage. I am using one index variable which auto-increments everytime a new value is added to local storage. But when i load chrome ...
0
votes
0answers
153 views

search item on value's localStorage

I search the best way to found key-value on my localstorage with regular expression. I explain, i devellop kind of history's page on google extension. I store my data with : localStorage.my_Id = ...
3
votes
1answer
302 views

setInterval using the value before last?

I'm developing a Google Chrome extension and I'm having a rather.. odd problem. (I'll try and keep this as simple as I can) Basically, I allow the user to customise the interval speed of a ...
1
vote
0answers
295 views

Chrome app losing localStorage

I have a sticky note app on the Chrome Store which uses the localStorage object to remember notes. It seems to work fine, but every time I push out an update, people report that they've lost all their ...

1 2