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 9113475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T03:58:24+00:00 2026-06-17T03:58:24+00:00

I have created one simple extension in Google chrome, below is my manifast.json {

  • 0

I have created one simple extension in Google chrome,
below is my manifast.json

{
    "name":"Hello World",
    "version":"1.0",
    "manifest_version":2,
    "description":"The first extension that I made.",
    "browser_action":{
        "default_icon":"icon.png"
    },
    "background": {
        "scripts": ["background.js"]
    },
    "permissions":[
        "tabs", "http://*/*", "https://*/*"
    ]
} 

and below is my background.js.

alert('test application');

Now, Extension is getting loaded, but not running background page.

Can some one please help me on this?
Its working fine with version 24, but I want to create an extension to test my web page, which should run on any Chrome versions.

  • 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-06-17T03:58:25+00:00Added an answer on June 17, 2026 at 3:58 am

    Why still use Chrome 11? It’s too old. The stable channel of Chrome 24 was just released.

    But if you do need to support older versions of Chrome that don’t support “manifest_version”: 2 (say, to support other Chromium based browsers that are not up-to-date with Chrome), here’s some suggestions.

    • Write sereval versions of manifest.json and package you extensions with different versions of Chrome to support both older and latest versions of Chrome. Say your_extension_chrome17.crx and your_extension_chrome18.crx (manifest version 2). Ask your users to download the appropriate package according to their Chrome version. Note that you have to use "background_page": "bg.html" where bg.html is your background page that contains background scripts instead of "background": {...} (and “background_page” cannot be used in v2 manifest). "manifest_version": 2 will be silently ignored before Chrome 17, so this won’t be a trouble.
    • Take a look at https://developer.chrome.com/trunk/extensions/whats_new.html to have a general idea when those new APIs are supported and consider workarounds for old versions.
    • Unknown permissions (supported in newer versions) will be silently ignored unless you need to support Chrome 6 or older (are you sure?).
    • In order to have auto update support, you need to take care of the update manifest. Use minprodversion to prevent packages for new versions from being installed (also set minimum_chrome_version in manifest.json) and include multiple entries in the update manifest. Note that an element can only contain one element so you have to use multiple elements. See https://developer.chrome.com/extensions/autoupdate.html for more information. For example:
    <?xml version='1.0' encoding='UTF-8'?>
    <gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
      <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'>
        <updatecheck codebase='http://myhost.com/mytestextension/your_extension_chrome18.crx' version='2.0' prodversionmin='18.0.1025.142'/>
      </app>
      <app appid='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'>
        <updatecheck codebase='http://myhost.com/mytestextension/your_extension_chrome17.crx' version='2.0' prodversionmin='3.0.193.0'/>
      </app>
    </gupdate>
    

    And be sure to test your extension thoroughly in different versions, though it would be a great headache.
    And as far as I know, you cannot use these tricks for extensions hosted in Chrome Web Store.

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

Sidebar

Related Questions

Using xlwDotNet, I have created a simple function which returns one number. Sometimes, something
I am a bit confused. I have created a simple form with a one
I'm trying to create a simple, custom, gallery. I have two lists, one with
I have created one service in my grails application. in that service 25 methods
I have created one UIImageView Here's code capView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:kARROW_CAP_NAME]]; capView.frame
I have created one library project in iphone and my images folder is present
i have created one image but problem is that when i save image from
I have created one class as public class FormActivity extends Activity { TextView tv
I have created one multiplication of complex function using prototype in java-script function ComplexNumber(real,imaginary)
I have created one jTable. I want to display the data into table from

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.