Inspect and view changes in Meta Tags SEO Extractor 🐸 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Meta Tags SEO Extractor 🐸",
"version": "1.2.1",
"description": "Extracts search results data from Google, Yandex and websites",
"permissions": [
"activeTab",
"tabs",
"scripting",
"windows",
"clipboardWrite",
"sidePanel"
],
"minimum_chrome_version": "114",
"side_panel": {
"default_path": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"host_permissions": [
"*://*.yandex.ru/*",
"*://*.google.com/*",
"*://*.google.ru/*",
"*://*.google.ua/*",
"*://*/*"
],
"content_scripts": [
{
"matches": [
"*://*.yandex.ru/*",
"*://*.google.com/*",
"*://*.google.ru/*",
"*://*.google.ua/*",
"*://*.yandex.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start",
"world": "MAIN"
}
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"incognito": "split"
}