Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Investigate Chrome Plugins #1

Open
nelsonic opened this issue Jun 20, 2015 · 2 comments
Open

Investigate Chrome Plugins #1

nelsonic opened this issue Jun 20, 2015 · 2 comments

Comments

@nelsonic
Copy link
Contributor

Investigate building and publishing chrome plugins.

@anniva
Copy link
Member

anniva commented Jun 20, 2015

Chrome
https://developer.chrome.com/extensions/getstarted

  1. manifest.json -> [https://developer.chrome.com/extensions/manifest ] // AKA the setup

{
"manifest_version": 2,

"name": "Getting started example",
"description": "This extension shows a Google Image search result for the current page",
"version": "1.0",

"browser_action": {
"default_icon": "icon.png", // this is just the icon for the plugin
"default_popup": "popup.html" //defines the html file to be shown in plugin
},
"permissions": [
"activeTab",
"https://ajax.googleapis.com/"
]
}

  1. popup.html
    -> Frame for plugin

  2. script.js
    -> functionality

  3. -> Upload plugin to chrome via developer tools.

  4. Publishing
    https://developer.chrome.com/webstore/publish

@nelsonic
Copy link
Contributor Author

@anniva please add your findings (in as much detail as possible) to the Readme so anyone else can pick up. thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants