Inspect and view changes in Krll URL Shortener 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
{
"manifest_version": 2,
"name": "URL Shortener",
"version": "1.0",
"description": "웹사이트에서 바로 URL을 단축합니다.",
"icons": {
"48": "icons/icon48.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content_script.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false,
"type": "module"
},
"permissions": [
"contextMenus"
],
"browser_specific_settings": {
"gecko": {
"id": "{1fe28724-2440-4074-bb11-088371249d31}"
}
}
}