Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6046887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:17:27+00:00 2026-05-23T07:17:27+00:00

I am a newbie to extension development. I am trying to create an extension

  • 0

I am a newbie to extension development. I am trying to create an extension where i can inject code into a webpage. I have been trying to do this using google chrome content scripts. But i have been unable to do this on facebook.com or google.com. It seems to work on yahoo.com. Is there a reason for this? How can i get around this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T07:17:27+00:00Added an answer on May 23, 2026 at 7:17 am

    I have done that in one of my extensions, Facebook Friend Exporter, feel free to take a look. It uses Facebook to get your friends contact information (including Email), and exports them to Gmail as a new contact. That requires permissions from Google and Facebook which is similar to yours.

    Since you would need to inject code to Facebook or Google, you must use Content Scripts. Content Scripts allow you to run JavaScript code in the context of the web page. You can use standard DOM to extract/read stuff from that webpage and make changes to them.

    In your manifest.json, you would need to define it as follows:

    {
      "name": "My extension",
      ...
      "content_scripts": [
        {
          "matches": ["http://*.google.com/*", "http://*.facebook.com/*"],
          "css": ["injected_styles.css"],
          "js": ["injected_script.js"],
          "all_frames": true
        }
      ],
      ...
    }
    

    For more info regarding the patterns for the matches, you can read about it in the Match Patterns documentation. Remember, the top Content Script match only allows you to inject on the “.com” domains. Just take that into account, if you want more match domains, you need to input them there one by one. (I know this is problematic, but it is for security reasons)

    Remember, for complex websites like Google Mail (gmail), it uses iframes usually to represent its DOM. That is why I placed “all_frames: true” because I want that content script to run in all frames of the pages not just the top frame.

    Hope that helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Newbie question. I have Django models that look like this: class Video(models.Model): uploaded_by =
Newbie question since I'm not up to speed using maven at all. I'm trying
I'm a newbie in C programming. I have this issue that I don't understand.
I started making this simple google chrome extension in javascript. And in the beginning
So I am trying to create an extension in Chrome (a prototype for a
I am a newbie in this department.I have following folder structure root root\html root\html\html
I have to create a Firefox plugin. I am a newbie and have no
As a Rails newbie, I am running into an issue in which I can
Newbie question here but for some reason I cant figure this out. I have
I am a Firefox C++ extension newbie. I need to get access to DOM

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.