Create bookmarks that dynamically get updated with the last visited page on the site.
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": 2,
"name": "Dynamic Bookmark",
"description": "Create bookmarks that dynamically get updated with the last visited page on the site.",
"version": "3.0",
"permissions": [
"bookmarks",
"tabs"
],
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
}
}