File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed
Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,10 @@ export default {
5050 const foundInActiveList = _blockerConfig . activeList . indexOf ( hostname ) > - 1
5151
5252 if ( this . usesBlacklist ( _blockerConfig . blockMode ) && foundInActiveList ) {
53+ console . log ( "[chronos] Blocking " + hostname + ": found in profile blacklist" )
5354 await browser . tabs . update ( tabId , { url : `/blocker/blocker.html#/block?hostname=${ hostname } ` , loadReplace : true } )
5455 } else if ( this . usesWhitelist ( _blockerConfig . blockMode ) && ! foundInActiveList ) {
56+ console . log ( "[chronos] Blocking " + hostname + ": not found in profile whitelist" )
5557 await browser . tabs . update ( tabId , { url : `/blocker/blocker.html#/block?hostname=${ hostname } ` , loadReplace : true } )
5658 }
5759 } ,
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ browser.tabs.onRemoved.addListener(Handlers.updateTabCountOnRemoval)
99
1010// Filtering handlers
1111Blocker . assembleBlockedSites ( ) . then ( ( ) => {
12+ console . log ( "[chronos] Loaded blocked sites." )
1213 browser . tabs . onUpdated . addListener ( Blocker . handleTabUpdate . bind ( Blocker ) )
1314 browser . storage . onChanged . addListener ( Blocker . handleStorageChange . bind ( Blocker ) )
1415} )
Original file line number Diff line number Diff line change 11{
22 "manifest_version" : 2 ,
33 "name" : " Chronos" ,
4- "version" : " 1.0 " ,
4+ "version" : " 1.0hotfix1 " ,
55 "author" : " encadyma" ,
66 "description" : " A productive tab manager doubling as a website blocker. Let online work flow like time." ,
77
Original file line number Diff line number Diff line change 241241.tabs-list__list {
242242 padding : 0 ;
243243 margin : 0 ;
244- max-height : 400 px ;
244+ max-height : 380 px ;
245245 overflow-y : auto ;
246246}
247247 </style >
You can’t perform that action at this time.
0 commit comments