Inspect and view changes in Pin for GitHub 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": "Pin for GitHub",
"version": "1.2",
"description": "Pin repositories on GitHub for later without having to star them",
"homepage_url": "https://github.com/vantezzen/pinforgithub",
"icons": {
"32": "icons/icon-32.png",
"48": "icons/icon-48.png"
},
"permissions": [
"*://github.com/*",
"storage"
],
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
"pinned-list.html"
],
"browser_specific_settings": {
"gecko": {
"id": "pinforgithub@vantezzen.io"
}
}
}