Inject HTML, CSS or JavaScript into any web-page. The changes you make are applied everytime you visit the specified website(s).
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Page Manipulator",
"version": "0.5.1",
"description": "Inject HTML, CSS or JavaScript into any web-page. The changes you make are applied everytime you visit the specified website(s).",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html",
"default_title": "Page Manipulator"
},
"background": {
"scripts": [
"eventpage.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"match_about_blank": true
}
],
"permissions": [
"tabs",
"storage",
"activeTab",
"contextMenus",
"unlimitedStorage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}