Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Adobe LLM Optimizer: Is Your Webpage Citable?",
"version": "2.10.0",
"description": "Compare the real site vs what ChatGPT, Perplexity and others read when fetching the page for citation",
"permissions": [
"activeTab",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "assets\/icon-16x16.png",
"48": "assets\/icon-48x48.png",
"128": "assets\/icon-128x128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Compare Human vs AI View"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"html-analyzer.min.js",
"turndown.min.js",
"marked.min.js",
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"fonts.css",
"fonts\/*",
"content.css",
"util\/rum.js"
],
"matches": [
"<all_urls>"
]
}
]
}