File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
"manifest_version" : 3 ,
3
3
"name" : " DocDecoder - Summarize Web Policies With AI" ,
4
4
"description" : " DocDecoder uses GPT-4 to generate clear, concise summaries of any site's legal policies for you to skim over before you accept them." ,
5
- "version" : " 1.2.4 " ,
5
+ "version" : " 1.2.5 " ,
6
6
"action" : {
7
7
"default_popup" : " popup.html" ,
8
8
"default_icon" : {
Original file line number Diff line number Diff line change @@ -513,7 +513,8 @@ function initiateStripeCheckout(plan_type) {
513
513
function updatePremiumFeaturesVisibility ( ) {
514
514
chrome . storage . local . get ( [ 'userPlan' ] , function ( result ) {
515
515
const userPlan = result . userPlan ;
516
- const isPremiumUser = userPlan === 'MONTHLY' || userPlan === 'YEARLY' ;
516
+ console . log ( 'User plan:' , userPlan ) ;
517
+ const isPremiumUser = userPlan === 'MONTHLY' || userPlan === 'YEARLY' || userPlan === 'premium' || userPlan === 'premium-plus' ;
517
518
518
519
// Get all AI question form containers by class name
519
520
let aiQuestionFormContainers = document . getElementsByClassName ( 'aiQuestionFormContainer' ) ;
You can’t perform that action at this time.
0 commit comments