File: manifest.json

Recommend this page to a friend!
  Classes of Andras Toth   Automatic Actions Management   manifest.json   Download  
File: manifest.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Automatic Actions Management
Chrome extension to automate actions on pages
Author: By
Last change: Update of manifest.json
Date: 2 years ago
Size: 906 bytes
 

Contents

Class file image Download
{ "manifest_version": 2, "author": "Tóth András", "name": "Automatic Actions Management", "short_name": "AAM", "description": "This extension will able to run predefined user events.", "version": "1.2", "options_page": "options.html", "browser_action": { "default_icon": "css/images/icon48.png", "default_popup": "popup.html" }, "icons": { "16": "css/images/icon16.png", "48": "css/images/icon48.png", "128": "css/images/icon128.png" }, "content_scripts": [{ "matches": ["http://*/*", "https://*/*"], "js": ["js/content.js"], "run_at": "document_start" }], "background": { "page": "background.html" }, "permissions": ["tabs", "<all_urls>", "contextMenus", "storage"], "web_accessible_resources": [ "css/aam-content-style.css" ] }