Google Extension and PHP
问题 Is it possible to include a PHP file inside a Google Extension? If so, how do I do it? Here's my manifest: { "name": "My very first extension", "version": "0.1", "description": "My first extension", "content_scripts": [ { "matches": ["http://jquery.com/*"], "js": ["jquery.js", "content.js"] } ], "browser_action": { "default_icon": "logo.png", "popup" : "index.html" }, "permissions": [ "http://api.flickr.com/" ] } So I have jQuery included and it seems to be working, so in my index.html I have