Skip to content

Instantly share code, notes, and snippets.

@Swader
Created November 7, 2012 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swader/4031797 to your computer and use it in GitHub Desktop.
Save Swader/4031797 to your computer and use it in GitHub Desktop.
Codeskulptor Autosave - Manifest JSON
{
"name": "Codeskulptor Autosave",
"version": "1",
"manifest_version" : 2,
"description": "Autosave timer for Codeskulptor!",
"background" : { "page" : "background.html" },
"page_action" :
{
"default_icon" : "icon.png",
"default_title" : "Autosave detected you're on Codeskulptor"
},
"content_scripts": [
{
"matches": ["http://www.codeskulptor.org/*", "https://www.codeskulptor.org/*"],
"js": ["main.js"],
"run_at": "document_idle"
}
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"options_page" : "fancy-settings/source/index.html"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment