How to Add jQuery Plugin to Chrome Extension Manifest.json
问题 Can you please let me know how I can add a jQuery plugin into a Google Chrome extension manifest.json file? { "manifest_version": 2, "name": "One Pass", "description": "This is a Development.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "https://secure.flickr.com/" ] } Thanks, 回答1: You would need to add it as a content script. It's very well documented in the chrome : http://developer.chrome.com/extensions/tut_migration