Tagged Questions
0
votes
1answer
28 views
How to generate Chrome Extension's popup body based on periodically fetched data?
I am programming a Chrome Extension that will be fetching JSON data every minute and update the popup's html body (accessible after clicking the icon) based on the results.
This is my background.js:
...
0
votes
1answer
52 views
document.getElementById doesn't work with <template> custom tag
I'm developing a Google Chrome extension and I want to add <li> to <ul> tag via JavaScript:
var newLI = document.createElement("LI");
var ul = document.getElementById('tag_list');
...
0
votes
0answers
24 views
a chrome extension to track dom events?
Is there an extension which can captures dom events and tells you what javascript function got called?
or
Is it possible to write code in a content script which can tell you which DOM element ...
0
votes
1answer
166 views
Google Chrome extension: Getting all links in page
I am trying to make chrome extension, that can recursively go trough the website and search for common error message strings (like "Error 500" etc.), for web developer testing.
The first step is get ...
2
votes
0answers
85 views
DOM's charset different from the displayed on screen
I'm facing a weird problem. The text inside the html has accents, e.g.:
<p>é</p>
It is displayed correctly in the screen (é), but the content inside the DOM instance does not accepts ...
0
votes
1answer
79 views
Inject CSS stylesheet as string using Javascript
I'm developing a Chrome extension, and I'd like users to be able to add their own CSS styles to change the appearance of the extension's pages (not web pages). I've looked into using ...
0
votes
0answers
111 views
Chrome >18: access page DOM from extension
I'm working on my first extension. It has to analyze the HTML input field of the visited page (not mine, any one on the net) and, eventually, change some attributes of that fields.
My problem is, how ...
0
votes
3answers
97 views
regular expression match all strings that start with T [closed]
I need a little help in writing a regular expression.
I need to find all sub-strings of strings that start with T. and end with . (in this case, those sub-strings are numbers). Those strings have to ...
-1
votes
1answer
68 views
How to hide a page before my content script has completed its DOM changes?
I'm using content scripts to basically go trough the document, pull out the data and then rebuild large chunks of the page with different layouts but the same information. So it's a "preffity" ...
1
vote
1answer
56 views
How to record the position of text on a page?
What I'm trying to do is allow the user to select a piece of text on the page and highlight it, then be able to load this selection and re-highlight it on further visits (with purely client side ...
0
votes
0answers
76 views
How to go to a page, click a button and then get it's DOM
I am writing a script in javascript/jquery that once executed must go a sub-page, click on a button and then get the DOM of that resulting page. After which I can just do some manipulation and get ...
0
votes
0answers
152 views
Accessing DOM of frame using javascript/jquery in Chrome extension
I'm working on a chrome extension that extracts metadata and some text elements from webpages. I'm encountering challenges when that information is contained within a frame of the given page.
Take ...
-1
votes
2answers
98 views
Can not establish a connection between background page and content page
I am writing chrome extension and I am trying to send an message between background pages and content pages.
Problem is that the connection is never established. I even copied the code from google ...
0
votes
2answers
70 views
JavaScript objects unique to all versions of Google Chrome?
I was wondering if there are any javascript objects that are unique to all versions of Google Chrome.
I know there's the window.chrome, but that was only implemented in Chrome 15, which was rather ...
0
votes
0answers
73 views
Chrome Extension: Access to frame elements
I am developing a chrome extension (content script) to access web page content. I use the DOM to access all elements in page.
My code does not work correctly when the web page contains "frameset". In ...
5
votes
1answer
125 views
Inserting DOM element while page is loading, not afterwards
I am working on a chrome extension, that inserts a div into the body element of the dom. Right now I am creating an event handler that fires on load to create the element. This means of course that ...
2
votes
1answer
194 views
Chrome Extension to change DOM when user clicks in the browser button
I'm trying to make a extension to Chrome that changes all the occurences of a name in the webpage. (For example, if the page has the word "that" it changes it to another name).
The idea is to make ...
1
vote
1answer
62 views
Chrome extension not changing DOM correctly
I just starting chrome extension programming. I have some experience in js and html programming. As my first extension I wanted to get rid of the ad bar on facebook. It is an div with the class ...
0
votes
0answers
35 views
Opening a tab in the parent window from a popup opened through a chrome extension
I have a chrome extension from which I often open a popup window - not the menu popup. Now, from this popup window can I open a new tab in the previous window, which was there before I created the new ...
0
votes
1answer
100 views
Inject a div with content script not working
I'm stuck with what seems to be really simple.
I'm trying to inject a div of my own in every page the user visited, in a google chrome extention.
I looked at examples on the web, but nothing seems to ...
3
votes
1answer
163 views
Using DomNodeInserted to rewrite HTML before it finishes loading
I feel like this will probably be immediately obvious to any of the non-amateurs out there, but I've been stumped on this for days.
I am writing a Chrome Extension that executes a script at document ...
2
votes
1answer
356 views
chrome extension — appending div to body not working with facebook like button
I'm creating a chrome extension and I've been successful so far. As a last functionality I'm trying to attach a div (something that shows a small, non-irritating ad about my personal site) to the body ...
0
votes
0answers
60 views
Modifying DOM with chrome extensions
I've read that chrome extensions have separate DOMs that each extension refers to, which is kept track through a hash table. I've also read that when DOM methods are called, such as appendChild(), ...
2
votes
1answer
328 views
Trigger native keyboard events from a Chrome extension
Facebook have textarea's where they expand/shrink to the size of the text inside of it. In my Chrome extension I change the text inside a textarea to be over several lines. However, the textareas ...
2
votes
1answer
274 views
Console shows error about Content Security policy and lots of failed GET requests
I'm actually working on my first Chrome Extension and even if it run smooth i got a lot of error from the get() function i'm using to retrieve some data and an annoying error about the security of the ...
0
votes
2answers
491 views
chrome extension remove script tags
i looked everywhere trying to find an answer to this question.
i want my extension to either disable all javascript on the page BUT to allow the insertion of a cotent script that will work. (so ...
1
vote
2answers
543 views
Can't access elements with document.ready, from the DOM with jQuery?
I write a Chrome plugin and I am listening to the DOM ready event like this:
$(document).ready(function () {
//here I select some elements and remove them.
});
Sometimes I cannot get the ...
0
votes
1answer
560 views
Chrome extension inject javascript before body finish loading
I'm triyng to create a Chrome extension that block a script before it is executed.
The script tag is in body tag and not in head.
Is it possible to do so?
in manifest.json I have set ...
1
vote
0answers
590 views
Javascript injection not working for chrome extension
I am trying to create a Google Chrome extension. I have the code actually
injecting but all I am getting is alert dialog boxes.
manifest.json:
{
"name":"Xpress Test Extension",
...
0
votes
1answer
276 views
chrome extension: get specific part of the current tab page in DOM object and display it in either popup.html or new html page?
IS there any way so that i can convert any DOM object into HTML page
within the script ?
suppose I have dom object like this: content script.js
...
-1
votes
1answer
341 views
Chrome Extension - Content Script unable to find elements by class name
I am attempting to access elements with a specific class name from a page using a content script of a Chrome extension. So far the content script can successfully find an element with a specific id ...
2
votes
1answer
342 views
Chrome Extension content script not accessing page's DOM in which it is injected
I'm attempting to pull data from a page that a user is viewing and sending that data to the extension popup. I'm running into trouble extracting information from the current page. After reviewing ...
0
votes
0answers
93 views
I want to grab the text from the DOM element that just had data entered
I have only ONE page I am interested in injecting to. I want to obtain office phone #
(which has a specific id), use jQuery to see if that person is due for any rewards and
enter code ...
0
votes
0answers
80 views
Encoding DOM element with a given encoding
I'm writing an extension for Google Chrome where I need to use, or design, a JavaScript API that given a character encoding (UTF-8), and a DOM element (outerHTML) as input, should be able to encode ...
1
vote
1answer
112 views
Double and triple button is shown (DOMNodeInserted)
I have a weird problem:
I am developing a chrome extension that adds a custom button beside the "like" button in facebook. Until now, with alot of help I found a way to run the script even when posts ...
0
votes
1answer
255 views
DOMNodeInserted event loop
I am developing a chrome extension (my fourth question or so...) for facebook, which adds a custom button beside the "like" button. Since posts are added automatically to the news feed without a page ...
0
votes
0answers
259 views
DOM events for popup.html browser action - chrome extensions
I'm using my popup-page as options page - I can send info to the contentscript and retrieve back, BUT none DOM events in the popup window works.
I tried adding onClick events, I've tried with ...
8
votes
1answer
3k views
Chrome extension adding external javascript to current page's html
I am adding some external JavaScript to the end of the page via my chrome extension. The external JavaScript then tries to post some data back to the server, however that is not taking place.
The ...
3
votes
1answer
692 views
Chrome extension to replace text DOM nodes… doesn't
Update: With guidance from "am no I am", I've solved this; working code at the end.
I'm working on my first Chrome extension at the moment, which is intended to perform text replacement on viewed ...
2
votes
1answer
856 views
Chrome-extension: Invoke page script by injection
Is it possible to inject a javascript file into the DOM and immediately execute it ?
I wish to invoke javascript functions within the page/DOM. A single content script will not work because of the ...
2
votes
1answer
433 views
Chrome Extension : Modify DOM before loading
My Chrome Extension should modify a DOM element before the DOM is fully constructed, and in the best scenario, right after this DOM element is constructed.
For example, if I have a in my document, I ...
1
vote
1answer
807 views
Chrome extension, reading a content of HTML element
I am trying to develop an extension for Chrome browser. I know what I want to achieve, but there are many ways to achieve it, some are more complicated than others.
I wish to parse the content of the ...
2
votes
2answers
3k views
Chrome extension - retrieving Gmail's original message
I am working on an extension for Chrome. I wish parse the content of the "original" Gmail message (the currently viewed message).
I am familiar with programmatically click Gmail's "show ...
2
votes
2answers
469 views
Implementation of a DOM listener
I was thinking there was no DOM listener so I implemented my own 'heavy' listener:
function CvHelper(stackApi) {
var that = this;
// check if room is finished loading
this.init = function() {
...
1
vote
1answer
490 views
Chrome extension: how do I do modify DOM of a determinate page with contextMenus?
As title, how to be able to apply the modifications to another page, different from that of background?
Manifest:
{
"name": "First Extension",
"version": "1.0",
"description": "The first ...
0
votes
3answers
82 views
Injecting div label to every <a> link
I'm working on browser extension which shows some info below every link using injected javascript. I want to use color div block with small icons and labels inside. The problem is that some pages ...
3
votes
1answer
1k views
Is there any way of passing additional data via custom events?
I need to pass data between two autonomic userscripts - ideally w/o touching the unsafeWindow object - and I thought using custom events would be the way to go. I thought of something like this (let ...
0
votes
1answer
1k views
document.write in Chrome Extension
I'm new to this so please bear with me. I am trying to write a chrome extension that does the following:
Detect www.website.com/anypage.html. If this website is detected, then do the following.
...
0
votes
1answer
63 views
Traversing the site document from the selected text
I'm trying to get the DOM node of the current selected text. I'm building a chrome extension and trying to do so from the background file. I know I can get the selection using:
...
7
votes
2answers
18k views
Javascript DOM remove element
I'm trying to test if a dom element exist,
If it does exist delete it,
If it doesn't exist create it.
var duskdawnkey = localStorage["duskdawnkey"];
var iframe = document.createElement("iframe");
var ...



