Giter Site home page Giter Site logo

test-chrome-extension's Introduction

chrome extension

manifest.json manifest read...

  • notification
{
    "background": {
        "scripts": [
            "bg-notification.js"
        ]
    },
    "browser_action": {
        "default_icon": "images/icons8-google_docs.png",
        "default_title": "Extension",     
        "default_popup": "popup.html"    
    },
    "permissions": [
        "notifications"
    ]
}
  • browser action : onclicked & show notification
{
    "background": {
        "scripts": [
            "bg-onclick.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": "images/icons8-contacts-32px.png",
            "48": "images/icons8-contacts-48px.png"
        },
        "default_title": "Extension"
    },
    "permissions": [
        "notifications",
        "tabs"
    ]
}

ถ้าใช้ event ใน background.javascrtips ให้ปิดการใช้งาน default_popup


  • page action
{
    "background": {
        "scripts": [
            "bg-page-action.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": { 
            "24": "images/icons8-ok.png" 
        },
        "default_title": "Click On read file." 
    },
    "icons": {
        "24": "images/icons8-ok.png"
    },
    "permissions": [
        "declarativeContent"
    ]
}

Notice that without the "persistent" key, you have a regular background page. Persistence is what differentiates an event page from a background page. readmore


  • default_title : optional; shown in tooltip
  • default_popup : page .html & include css & js in file.
  • declare permissions : อนุญาติการเรียกใช้งาน function เสริมต่าง

test-chrome-extension's People

Contributors

tisstp avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.