Inspect and view changes in parrot 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",
"name": "parrot",
"description": "simple video controller using keyboard for learning language with WatchaPlay.",
"version": "0.0.0.4",
"manifest_version": 2,
"icons": {
"16": "images/parrot_16.png",
"32": "images/parrot_32.png",
"48": "images/parrot_48.png",
"128": "images/parrot_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://play.watcha.net/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/parrot_16.png",
"32": "images/parrot_32.png",
"48": "images/parrot_48.png",
"128": "images/parrot_128.png"
}
},
"permissions": [
"webNavigation",
"activeTab",
"tabs"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}